Skip to content

Commit

Permalink
Fix linting for Modules/gcmodule.c (#116691)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogsal committed Mar 13, 2024
1 parent dcfb21d commit acd7dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/gcmodule.c
Expand Up @@ -2290,7 +2290,7 @@ _Py_RunGC(PyThreadState *tstate)
GCState *gcstate = &tstate->interp->gc;
if (!gcstate->enabled) {
return;
}
}
gcstate->collecting = 1;
gc_collect_generations(tstate);
gcstate->collecting = 0;
Expand Down

0 comments on commit acd7dc7

Please sign in to comment.