Skip to content

Commit

Permalink
change an assertion to a proper exception
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Jun 17, 2024
1 parent 710a3f8 commit dfe0040
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vyper/codegen/ir_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@ def unique_symbols(self):
for arg in children:
s = arg.unique_symbols
non_uniques = ret.intersection(s)
assert len(non_uniques) == 0, f"non-unique symbols {non_uniques}"
if len(non_uniques) != 0: # pragma: nocover
raise CompilerPanic(f"non-unique symbols {non_uniques}")
ret |= s
return ret

Expand Down

0 comments on commit dfe0040

Please sign in to comment.