summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-05-01 00:38:00 (GMT)
committerGitHub <noreply@github.com>2020-05-01 00:38:00 (GMT)
commiteb0d359b4b0e14552998e7af771a088b4fd01745 (patch)
treea05573f729194e3678fb2bd6b119d165d0b82778 /Lib/importlib
parent2935e65c36fab1989bbda19db72c035ea22b044b (diff)
downloadcpython-eb0d359b4b0e14552998e7af771a088b4fd01745.zip
cpython-eb0d359b4b0e14552998e7af771a088b4fd01745.tar.gz
cpython-eb0d359b4b0e14552998e7af771a088b4fd01745.tar.bz2
bpo-40443: Remove unused imports in stdlib (GH-19815)
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/resources.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/importlib/resources.py b/Lib/importlib/resources.py
index fc3a1c9..f518865 100644
--- a/Lib/importlib/resources.py
+++ b/Lib/importlib/resources.py
@@ -8,10 +8,9 @@ from importlib.abc import ResourceLoader
from io import BytesIO, TextIOWrapper
from pathlib import Path
from types import ModuleType
-from typing import Iterable, Iterator, Optional, Set, Union # noqa: F401
+from typing import Iterable, Iterator, Optional, Union # noqa: F401
from typing import cast
from typing.io import BinaryIO, TextIO
-from zipimport import ZipImportError
__all__ = [