bpo-42403: Fix pyflakes warnings in importlib (GH-23396)

Remove unused imports and unused local variables.
This commit is contained in:
Victor Stinner 2020-11-19 11:20:57 +01:00 committed by GitHub
parent bf9d70a1a5
commit 7d9d25dbed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 4 deletions

View file

@ -1,5 +1,4 @@
"""Abstract base classes related to import."""
from . import _bootstrap
from . import _bootstrap_external
from . import machinery
try: