mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
pre-commit.ci has been disabled for a while. This PR ensures that all the files has been validated/formatted by pre-commit, to avoid spurious diffs in subsequent PRs. During the process, ruff broke the code because it removed an "unused" import which was actually used. A linter which breaks my code is a linter which I cannot trust, so I just removed it. I re-enabled isort instead.
15 lines
230 B
Python
15 lines
230 B
Python
###### magic monkey patching ######
|
|
import builtins
|
|
import sys
|
|
|
|
from pyodide.code import eval_code
|
|
from pyscript import sync
|
|
|
|
sys.stdout = sync
|
|
builtins.input = sync.readline
|
|
|
|
####### main code ######
|
|
import code
|
|
|
|
code.interact()
|