Skip to content

Commit 11bb638

Browse files
Update faulthandler.c
Co-authored-by: Sam Gross <[email protected]>
1 parent b1677f3 commit 11bb638

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/faulthandler.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,7 @@ deduce_all_threads(void)
283283
}
284284
// We can't use _PyThreadState_GET, so use the stored GILstate one
285285
PyThreadState *tstate = PyGILState_GetThisThreadState();
286-
if (tstate == NULL)
287-
{
286+
if (tstate == NULL) {
288287
return 0;
289288
}
290289

0 commit comments

Comments
 (0)