Skip to content

Commit

Permalink
Update interface_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gduscher committed Dec 15, 2024
1 parent 2199616 commit b647fb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sidpy/io/interface_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ def update_directory_list(directory_name):
for name in dir_list:
if os.path.isfile(os.path.join(file_dict['directory'], name)):
if name not in file_dict:
add_to_dict(file_dict, name)
pass
# add_to_dict(file_dict, name)
file_dict['file_list'].append(name)
file_dict['display_file_list'].append(file_dict[name]['display_string'])
else:
Expand Down

0 comments on commit b647fb9

Please sign in to comment.