Home | History | Annotate | Download | only in myfixes
      1 from lib2to3.fixer_base import BaseFix
      2 
      3 class FixFirst(BaseFix):
      4     run_order = 1
      5 
      6     def match(self, node): return False
      7