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