1from lib2to3.fixer_base import BaseFix
2
3class FixPreorder(BaseFix):
4    order = "pre"
5
6    def match(self, node): return False
7