Skip to content

Commit

Permalink
s/prompt_number/execution_count
Browse files Browse the repository at this point in the history
  • Loading branch information
cobac committed Sep 15, 2023
1 parent 9f7655f commit 440e58d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asekuro/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def _strip_output(nb):
for cell in _cells(nb):
if 'outputs' in cell:
cell['outputs'] = []
if 'prompt_number' in cell:
cell['prompt_number'] = None
if 'execution_count' in cell:
cell['execution_count'] = None
return nb


Expand Down

0 comments on commit 440e58d

Please sign in to comment.