File: //lib/python3/dist-packages/libfuturize/fixes/__pycache__/fix_input.cpython-310.pyc
o
,1�]� � @ s2 d Z ddlZddlmZ G dd� dejjj�ZdS )aq
Fixer for input.
Does a check for `from builtins import input` before running the lib2to3 fixer.
The fixer will not run when the input is already present.
this:
a = input()
becomes:
from builtins import input
a = eval(input())
and this:
from builtins import input
a = input()
becomes (no change):
from builtins import input
a = input()
� N)�does_tree_importc s e Zd Z� fdd�Z� ZS )�FixInputc s"