-
Notifications
You must be signed in to change notification settings - Fork 149
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
Jupyter console is broken (run_sync expects coroutines) #277
Comments
I can reproduce this with python 3.10.9:
|
Fixed by #276. |
Same problem with completions:
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jupyter console appears to be simply broken since any use of it triggers an assertion:
then I type "x" and press enter, which produces:
Apparently,
self.client.iopub_channel.msg_ready
is not a coroutine, butrun_sync
expects it to be.The text was updated successfully, but these errors were encountered: