Skip to content

Commit

Permalink
Update modin/utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
YarShev authored May 17, 2024
1 parent 33290ab commit a12fa5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modin/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,6 @@ def reload_modin() -> None:
is going to be started up once again.
"""
modules = sys.modules.copy()
for key, module in modules.items():
if key.startswith("modin"):
for name, module in modules.items():
if name.startswith("modin"):
importlib.reload(module)

0 comments on commit a12fa5d

Please sign in to comment.