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