Skip to content

Commit ac56ef0

Browse files
Lisa CarrierLisa Carrier
authored andcommitted
Removes unneeded change.
1 parent e6436c4 commit ac56ef0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/importlib/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ def import_module(name, package=None):
8585
if character != '.':
8686
break
8787
level += 1
88-
module = _bootstrap._gcd_import(name[level:], package, level)
89-
return module
88+
return _bootstrap._gcd_import(name[level:], package, level)
9089

9190

9291
_RELOADING = {}

0 commit comments

Comments
 (0)