mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
bpo-42403: Fix pyflakes warnings in importlib (GH-23396)
Remove unused imports and unused local variables.
This commit is contained in:
parent
bf9d70a1a5
commit
7d9d25dbed
3 changed files with 0 additions and 4 deletions
|
@ -232,7 +232,6 @@ class _LazyModule(types.ModuleType):
|
|||
# Figure out exactly what attributes were mutated between the creation
|
||||
# of the module and now.
|
||||
attrs_then = self.__spec__.loader_state['__dict__']
|
||||
original_type = self.__spec__.loader_state['__class__']
|
||||
attrs_now = self.__dict__
|
||||
attrs_updated = {}
|
||||
for key, value in attrs_now.items():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue