Skip to content

Commit 18c2e64

Browse files
committed
lint
1 parent 3c4c41c commit 18c2e64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/ceval_gil.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ static inline void run_remote_debugger_script(const char *path)
12141214
int fd = PyObject_AsFileDescriptor(fileobj);
12151215
if (fd == -1) {
12161216
PyErr_FormatUnraisable("Can't find fd for debugger script %s", path);
1217-
}
1217+
}
12181218
else {
12191219
int dup_fd = -1;
12201220
FILE *f = NULL;
@@ -1238,7 +1238,7 @@ static inline void run_remote_debugger_script(const char *path)
12381238
#endif
12391239
if (!f) {
12401240
PyErr_SetFromErrno(PyExc_OSError);
1241-
}
1241+
}
12421242
else {
12431243
PyRun_AnyFileEx(f, path, 1);
12441244
}

0 commit comments

Comments
 (0)