Skip to content

Commit d2b4a46

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

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

mypyc/irbuild/function.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -350,13 +350,9 @@ def gen_func_ir(
350350
func_decl.is_prop_getter,
351351
func_decl.is_prop_setter,
352352
)
353-
func_ir = FuncIR(
354-
func_decl, args, blocks, fitem.line, traceback_name=fitem.name
355-
)
353+
func_ir = FuncIR(func_decl, args, blocks, fitem.line, traceback_name=fitem.name)
356354
else:
357-
func_ir = FuncIR(
358-
func_decl, args, blocks, fitem.line, traceback_name=fitem.name
359-
)
355+
func_ir = FuncIR(func_decl, args, blocks, fitem.line, traceback_name=fitem.name)
360356
return (func_ir, func_reg)
361357

362358

0 commit comments

Comments
 (0)