We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to get to the bottom of this issue with deno kernel and so I managed to track it down to the following:
display_id = content.get("transient", {}).get("display_id", None)
throws when receiving message with the following content (note explicit None which causes the issue):
None
{'execution_count': 7, 'data': {'text/plain': '\x1b[32m"2.29.4"\x1b[39m'}, 'metadata': {}, 'transient': None}
Should this be addressed in nbclient or is this an issue with the kernel?
The text was updated successfully, but these errors were encountered:
a simple workaround would be something along these lines:
transient = content.get("transient", {}) display_id = transient.get("display_id", None) if transient else None
Sorry, something went wrong.
gracefully handle explicit transient=None re jupyter#321
031be42
Gracefully handle explicit transient=None (#322)
a6628b8
* gracefully handle explicit transient=None re #321 * rephrase
No branches or pull requests
I am trying to get to the bottom of this issue with deno kernel and so I managed to track it down to the following:
throws when receiving message with the following content (note explicit
None
which causes the issue):{'execution_count': 7, 'data': {'text/plain': '\x1b[32m"2.29.4"\x1b[39m'}, 'metadata': {}, 'transient': None}
Should this be addressed in nbclient or is this an issue with the kernel?
The text was updated successfully, but these errors were encountered: