Skip to content

Commit 81e5991

Browse files
committed
ruff
1 parent 0296fff commit 81e5991

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

v03_pipeline/lib/paths.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ def _callset_path_hash(callset_path: str) -> str:
7373
else:
7474
# f.modification_time is None for directories
7575
key = callset_path + str(
76-
max((f.modification_time if f.modification_time else 0) for f in shards)
76+
max(
77+
(f.modification_time if f.modification_time else 0) for f in shards
78+
),
7779
)
7880
except FileNotFoundError:
7981
key = callset_path

0 commit comments

Comments
 (0)