diff options
author | Victor Stinner <vstinner@python.org> | 2025-03-12 15:03:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-12 15:03:36 +0100 |
commit | 14aed5e8abb84018cf48ebd1dd2ccc483013a005 (patch) | |
tree | de134d1191bf754675bd8b6365bba83646dbe284 /Lib/pkgutil.py | |
parent | 7ffe93faf1db3b90968af1b1d811f39529603780 (diff) | |
download | cpython-14aed5e8abb84018cf48ebd1dd2ccc483013a005.tar.gz cpython-14aed5e8abb84018cf48ebd1dd2ccc483013a005.zip |
gh-131152, pkgutil: Remove unused imports (#131149)
Diffstat (limited to 'Lib/pkgutil.py')
-rw-r--r-- | Lib/pkgutil.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py index b84d72f2395..8772a66791a 100644 --- a/Lib/pkgutil.py +++ b/Lib/pkgutil.py @@ -8,8 +8,6 @@ import importlib.machinery import os import os.path import sys -from types import ModuleType -import warnings __all__ = [ 'get_importer', 'iter_importers', |