From 14aed5e8abb84018cf48ebd1dd2ccc483013a005 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 12 Mar 2025 15:03:36 +0100 Subject: [PATCH] gh-131152, pkgutil: Remove unused imports (#131149) --- Lib/pkgutil.py | 2 -- 1 file changed, 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',