Skip to content

Commit 6cf1116

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

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

mypyc/codegen/emitclass.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,11 @@ def generate_clear_for_class(cl: ClassIR, func_name: str, emitter: Emitter) -> N
782782

783783

784784
def generate_dealloc_for_class(
785-
cl: ClassIR, dealloc_func_name: str, clear_func_name: str, has_tp_finalize: bool, emitter: Emitter
785+
cl: ClassIR,
786+
dealloc_func_name: str,
787+
clear_func_name: str,
788+
has_tp_finalize: bool,
789+
emitter: Emitter,
786790
) -> None:
787791
emitter.emit_line("static void")
788792
emitter.emit_line(f"{dealloc_func_name}({cl.struct_name(emitter.names)} *self)")

0 commit comments

Comments
 (0)