diff --git a/src/taskgraph/util/hash.py b/src/taskgraph/util/hash.py index 26de8e52..a85073d5 100644 --- a/src/taskgraph/util/hash.py +++ b/src/taskgraph/util/hash.py @@ -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() + ]