Skip to content

Commit

Permalink
[translation] Fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy C committed Feb 9, 2025
1 parent 94d1965 commit 2d1680c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ def Dump(self):
_AddCallToken(d, frame.call_tok)

# Note: Skip debug_frame.MainFile
if d:
if d is not None:
debug_stack.append(value.Dict(d))

return var_stack, argv_stack, debug_stack
Expand Down

0 comments on commit 2d1680c

Please sign in to comment.