File size: 125 Bytes
fb5159d | 1 2 3 4 5 6 7 8 | from lib2to3.fixer_base import BaseFix
class FixLast(BaseFix):
run_order = 10
def match(self, node): return False
|
fb5159d | 1 2 3 4 5 6 7 8 | from lib2to3.fixer_base import BaseFix
class FixLast(BaseFix):
run_order = 10
def match(self, node): return False
|