Skip to content

Commit

Permalink
Fix handling of "silent" in execute request (#1200)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haadem authored Jan 28, 2024
1 parent 93a63fb commit e63d063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/kernelbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ async def execute_request(self, stream, ident, parent):
try:
content = parent["content"]
code = content["code"]
silent = content["silent"]
silent = content.get("silent", False)
store_history = content.get("store_history", not silent)
user_expressions = content.get("user_expressions", {})
allow_stdin = content.get("allow_stdin", False)
Expand Down

0 comments on commit e63d063

Please sign in to comment.