Skip to content

Commit

Permalink
Correctly handle with_cell_id in async do_execute (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 authored Apr 3, 2024
1 parent 0bc51f2 commit 8d60e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/ipkernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ async def run_cell(*args, **kwargs):
store_history=store_history,
silent=silent,
)
if with_cell_id:
if with_cell_id and with_cell_id["cell_id"]:
kwargs.update(cell_id=cell_id)

if should_run_async(
Expand Down

0 comments on commit 8d60e67

Please sign in to comment.