Skip to content

Commit

Permalink
Add import_module comment back in.
Browse files Browse the repository at this point in the history
  • Loading branch information
mharista committed Nov 6, 2019
1 parent 3a0c8ff commit 65be6c0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyeapi/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def import_module(name):
"""
if name in sys.modules:
# Be sure not to reload a previously loaded module
mod = sys.modules[name]
else:
mod = importlib.import_module(name)
Expand Down

0 comments on commit 65be6c0

Please sign in to comment.