We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10820e8 commit 6954afcCopy full SHA for 6954afc
mypyc/irbuild/ll_builder.py
@@ -1282,7 +1282,9 @@ def load_complex(self, value: complex) -> Value:
1282
"""Load a complex literal value."""
1283
return self.add(LoadLiteral(value, object_rprimitive))
1284
1285
- def load_tuple(self, value: tuple[Any, ...]) -> Value: # should this be RTuple? conditional RTuple when length is known?
+ def load_tuple(
1286
+ self, value: tuple[Any, ...]
1287
+ ) -> Value: # should this be RTuple? conditional RTuple when length is known?
1288
return self.add(LoadLiteral(value, tuple_rprimitive))
1289
1290
def load_dict(self, value: dict[Any, Any]) -> Value:
0 commit comments