Skip to content

Commit

Permalink
Format black
Browse files Browse the repository at this point in the history
  • Loading branch information
pyiron-runner committed Jul 22, 2024
1 parent 9aa5e75 commit 039f62f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyiron_snippets/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,10 @@ def cond(path):
)
if isfile and not isexec:
from pyiron_snippets.logger import logger
logger.warning(f"Found file '{path}', but skipping it because it is not executable!")

logger.warning(
f"Found file '{path}', but skipping it because it is not executable!"
)
return isfile and isexec

for path in filter(cond, self._resolver.search(self._glob)):
Expand Down

0 comments on commit 039f62f

Please sign in to comment.