Skip to content

Commit 6954afc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 10820e8 commit 6954afc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypyc/irbuild/ll_builder.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,9 @@ def load_complex(self, value: complex) -> Value:
12821282
"""Load a complex literal value."""
12831283
return self.add(LoadLiteral(value, object_rprimitive))
12841284

1285-
def load_tuple(self, value: tuple[Any, ...]) -> Value: # should this be RTuple? conditional RTuple when length is known?
1285+
def load_tuple(
1286+
self, value: tuple[Any, ...]
1287+
) -> Value: # should this be RTuple? conditional RTuple when length is known?
12861288
return self.add(LoadLiteral(value, tuple_rprimitive))
12871289

12881290
def load_dict(self, value: dict[Any, Any]) -> Value:

0 commit comments

Comments
 (0)