Skip to content

Commit ce362b7

Browse files
committed
Simplify return.
1 parent fb1318c commit ce362b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,7 @@ pymain_run_stdin(PyConfig *config)
562562
int run = PyRun_AnyFileExFlags(stdin, "<stdin>", 0, &cf);
563563
return (run != 0);
564564
}
565-
int run = pymain_run_module(L"_pyrepl", 0);
566-
return run;
565+
return pymain_run_module(L"_pyrepl", 0);
567566
}
568567

569568

0 commit comments

Comments
 (0)