Skip to content

Commit 08679d8

Browse files
committed
Fix visual indentation
1 parent bebb594 commit 08679d8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Python/pylifecycle.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,8 +1083,11 @@ run_presite(PyThreadState *tstate)
10831083
PyInterpreterState *interp = tstate->interp;
10841084
const PyConfig *config = _PyInterpreterState_GetConfig(interp);
10851085

1086-
if (config->run_presite) {
1087-
PyObject *presite_modname = PyUnicode_FromWideChar(
1086+
if (!config->run_presite) {
1087+
return;
1088+
}
1089+
1090+
PyObject *presite_modname = PyUnicode_FromWideChar(
10881091
config->run_presite,
10891092
wcslen(config->run_presite)
10901093
);
@@ -1102,7 +1105,6 @@ run_presite(PyThreadState *tstate)
11021105
Py_DECREF(presite_modname);
11031106
}
11041107
}
1105-
}
11061108
#endif
11071109

11081110

0 commit comments

Comments
 (0)