§ ‚œs-'Pã óX — d Z ddlZddlmZ G d„ dej j j ¦ « 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 ó ‡ — e Zd Zˆ fd„Zˆ xZS )ÚFixInputc ó| •— t dd|¦ « rd S t t | ¦ « ||¦ « S )NÚbuiltinsÚinput)r Úsuperr Ú transform)ÚselfÚnodeÚresultsÚ __class__s €úm/builddir/build/BUILD/cloudlinux-venv-1.0.10/venv/lib/python3.11/site-packages/libfuturize/fixes/fix_input.pyr zFixInput.transform s<