]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix linting for Modules/gcmodule.c (#116691)
authorPablo Galindo Salgado <Pablogsal@gmail.com>
Wed, 13 Mar 2024 00:00:14 +0000 (00:00 +0000)
committerGitHub <noreply@github.com>
Wed, 13 Mar 2024 00:00:14 +0000 (00:00 +0000)
Modules/gcmodule.c

index c9b5aab8598f177863f54a5f62b19cd5d6ca2f2d..f8c774cbb75e56f835fa297aa5df987438218162 100644 (file)
@@ -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;