Skip to content

Commit

Permalink
phrasing for when memoized result is used
Browse files Browse the repository at this point in the history
  • Loading branch information
smacke committed Nov 26, 2023
1 parent 7a3b9d7 commit ed6cfcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/ipyflow/shell/interactiveshell.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ def before_run_cell(
if identical_result_ctr is not None:
cell.skipped_due_to_memoization_ctr = identical_result_ctr
print_purple(
"Detected identical symbol usages to previous run; skipping due to memoization..."
"Detected identical symbol usages to previous run; reusing memoized result..."
)
for sym, obj in memoized_outputs.items():
if sym.obj is not obj:
Expand Down

0 comments on commit ed6cfcc

Please sign in to comment.