mirror of
https://github.com/python/cpython.git
synced 2025-11-04 23:51:47 +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
|