7 lines
127 B
Python
7 lines
127 B
Python
from lib2to3.fixer_base import BaseFix
|
|
|
|
class FixPreorder(BaseFix):
|
|
order = "pre"
|
|
|
|
def match(self, node): return False
|