We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8750c commit 2f0d11bCopy full SHA for 2f0d11b
1 file changed
Tools/build/check_extension_modules.py
@@ -22,7 +22,6 @@
22
23
import _imp
24
import argparse
25
-import collections
26
import enum
27
import logging
28
import os
@@ -32,7 +31,9 @@
32
31
import sysconfig
33
import warnings
34
from collections.abc import Iterable
35
-from importlib._bootstrap import _load as bootstrap_load # type: ignore[attr-defined]
+from importlib._bootstrap import (
+ _load as bootstrap_load, # type: ignore[attr-defined]
36
+)
37
from importlib.machinery import (
38
BuiltinImporter,
39
ExtensionFileLoader,
0 commit comments