Skip to content

Commit 5906c17

Browse files
pre-commit-ci[bot]BobTheBuidler
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7229fb4 commit 5906c17

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
@@ -1355,7 +1355,9 @@ def load_complex(self, value: complex) -> Value:
13551355
"""Load a complex literal value."""
13561356
return self.add(LoadLiteral(value, object_rprimitive))
13571357

1358-
def load_tuple(self, value: tuple[Any, ...]) -> Value: # should this be RTuple? conditional RTuple when length is known?
1358+
def load_tuple(
1359+
self, value: tuple[Any, ...]
1360+
) -> Value: # should this be RTuple? conditional RTuple when length is known?
13591361
return self.add(LoadLiteral(value, tuple_rprimitive))
13601362

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

0 commit comments

Comments
 (0)