mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +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)
|