mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
14 lines
321 B
Python
14 lines
321 B
Python
"""Fixer for basestring -> str."""
|
|
# Author: Christian Heimes
|
|
|
|
# Local imports
|
|
from .. import fixer_base
|
|
from ..fixer_util import Name
|
|
|
|
class FixBasestring(fixer_base.BaseFix):
|
|
BM_compatible = True
|
|
|
|
PATTERN = "'basestring'"
|
|
|
|
def transform(self, node, results):
|
|
return Name(u"str", prefix=node.prefix)
|