Skip to content

Commit

Permalink
correct variable name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Nov 17, 2024
1 parent d08cb8b commit 35a69ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mathics/eval/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def wrapper(expr, evaluation) -> Any:
if not skip_call:
result = func(expr, evaluation)
if trace_evaluate_on_return is not None and not evaluation.is_boxing:
trace_evaluate_on_call(result, evaluation, "Returning", expr)
trace_evaluate_on_return(result, evaluation, "Returning", expr)
return result

return wrapper
Expand Down

0 comments on commit 35a69ec

Please sign in to comment.