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 14, 2023
1 parent 9233827 commit 8150a08
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyfileindex/pyfileindex.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,14 @@ def open(self, path):
)
else:
return PyFileIndex(
path=abs_path, filter_function=self._filter_function, debug=self._debug
path=abs_path,
filter_function=self._filter_function,
debug=self._debug,
)
else:
raise FileNotFoundError("The path " + abs_path + " does not exist on your filesystem.")
raise FileNotFoundError(
"The path " + abs_path + " does not exist on your filesystem."
)

def update(self):
"""
Expand Down

0 comments on commit 8150a08

Please sign in to comment.