diff options
author | Guido van Rossum <guido@python.org> | 2020-04-30 20:59:30 -0700 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2020-04-30 20:59:30 -0700 |
commit | 0be7a2bb0c0c4f7a1317338726176eb267a1c709 (patch) | |
tree | a379628b6ff449cddc9d4953ecb869d7fa434639 /Lib/importlib | |
parent | c73ab8934487d0dc88ce4a8ed230bae100ff3776 (diff) | |
parent | 3e0a6f37dfdd595be737baae00ec0e036a912615 (diff) | |
download | cpython-git-refactor-lambda-parameters.tar.gz |
Merge remote-tracking branch 'origin/master' into refactor-lambda-parametersrefactor-lambda-parameters
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/resources.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/importlib/resources.py b/Lib/importlib/resources.py index fc3a1c9cab..f518865574 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__ = [ |