Skip to content

Commit 8a0152f

Browse files
PEP7
Co-authored-by: Brandt Bucher <[email protected]>
1 parent 8984add commit 8a0152f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Python/optimizer_bytecodes.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -848,8 +848,9 @@ dummy_func(void) {
848848

849849
op(_CALL_TYPE_1, (callable, null, arg -- res)) {
850850
if (sym_has_type(arg)) {
851-
res = sym_new_const(ctx, (PyObject*)sym_get_type(arg));
852-
} else {
851+
res = sym_new_const(ctx, (PyObject *)sym_get_type(arg));
852+
}
853+
else {
853854
res = sym_new_not_null(ctx);
854855
}
855856
}

0 commit comments

Comments
 (0)