Skip to content

Commit 7c6d9cb

Browse files
committed
Merge branch 'patch-3' of https://github.com/BobTheBuidler/mypy into patch-3
2 parents a52d8d7 + d2b4a46 commit 7c6d9cb

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)