Skip to content
Snippets Groups Projects
Commit 5f5cbbd5 authored by Matthew David Pitkin's avatar Matthew David Pitkin
Browse files

utils.py: explicitly convect module keys to a list

parent 762568df
No related branches found
No related tags found
1 merge request!920utils.py: explicitly convert module keys to a list
......@@ -1250,7 +1250,7 @@ def get_function_path(func):
def loaded_modules_dict():
module_names = sys.modules.keys()
module_names = list(sys.modules.keys())
vdict = {}
for key in module_names:
if "." not in key:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment