mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
7 lines
123 B
Python
7 lines
123 B
Python
|
|
from lib2to3.fixer_base import BaseFix
|
||
|
|
|
||
|
|
class FixExplicit(BaseFix):
|
||
|
|
explicit = True
|
||
|
|
|
||
|
|
def match(self): return False
|