Skip to content

Commit

Permalink
Format black
Browse files Browse the repository at this point in the history
  • Loading branch information
pyiron-runner committed May 18, 2023
1 parent ae72f51 commit 495af98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyiron_base/database/filetable.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ def __call__(cls, index_from):
path = os.path.abspath(os.path.expanduser(index_from))
if path not in cls._instances:
cls._instances[path] = super(FileTableSingleton, cls).__call__(
index_from=path,
fileindex=cls._get_fileindex_if_theres_a_common_path(path),
)
index_from=path,
fileindex=cls._get_fileindex_if_theres_a_common_path(path),
)
return cls._instances[path]

def _get_fileindex_if_theres_a_common_path(cls, path):
Expand Down

0 comments on commit 495af98

Please sign in to comment.