Skip to content

Commit aed4a8b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 82e39c4 commit aed4a8b

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
@@ -824,7 +824,9 @@ def _construct_varargs(
824824
if len(args) == 1:
825825
# early exit with fastpath if the only arg is ARG_STAR2
826826
# TODO: can we maintain an empty tuple in memory and just reuse it again and again?
827-
return self.new_tuple([], line), self.primitive_op(dict_copy_op, [args[0][0]], line)
827+
return self.new_tuple([], line), self.primitive_op(
828+
dict_copy_op, [args[0][0]], line
829+
)
828830

829831
star2_result = self._create_dict(star2_keys, star2_values, line)
830832

0 commit comments

Comments
 (0)