10000 Fix test_async and test_stdio_handling by hoodmane · Pull Request #1319 · pyscript/pyscript · GitHub
[go: up one dir, main page]

Skip to content

Fix test_async and test_stdio_handling #1319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Mar 30, 2023
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 30, 2023
commit abcfbe55e4d0e954c3e879a91f61286abf1996bc
4 changes: 2 additions & 2 deletions pyscriptjs/src/python/pyscript/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

try:
from pyodide.code import eval_code
from pyodide.ffi import JsProxy, create_proxy, create_once_callable
from pyodide.ffi import JsProxy, create_once_callable, create_proxy
except ImportError:
from pyodide import JsProxy, create_proxy, eval_code, create_once_callable
from pyodide import JsProxy, create_once_callable, create_proxy, eval_code


loop = asyncio.get_event_loop()
Expand Down
0