Skip to content

Commit

Permalink
style: pre-commit.ci auto fixes [...]
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored and ahal committed Nov 27, 2023
1 parent e694483 commit 931ab6f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/taskgraph/util/hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,8 @@ def _find_matching_files(base_path, pattern):

@memoize
def _get_all_files(base_path):
return [mozpath.normsep(str(path)) for path in Path(base_path).rglob("*") if path.is_file()]
return [
mozpath.normsep(str(path))
for path in Path(base_path).rglob("*")
if path.is_file()
]

0 comments on commit 931ab6f

Please sign in to comment.