Skip to content

Commit 7229fb4

Browse files
committed
Update builder.py
1 parent a14f11a commit 7229fb4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mypyc/irbuild/builder.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,10 +620,8 @@ def load_literal_value(self, val: int | str | bytes | float | complex | bool | t
620620
elif isinstance(val, complex):
621621
return self.builder.load_complex(val)
622622
elif isinstance(val, tuple):
623-
# TODO: validate this code path
624623
return self.builder.load_tuple(val)
625624
elif isinstance(val, dict):
626-
# TODO: validate this code path
627625
return self.builder.load_dict(val)
628626
else:
629627
assert False, "Unsupported literal value"

0 commit comments

Comments
 (0)