From 931ab6f6754a4ae4fb62b458cbc33f8aa2fa8e49 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 13:08:01 +0000 Subject: [PATCH] style: pre-commit.ci auto fixes [...] --- src/taskgraph/util/hash.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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() + ]