We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0296fff commit 81e5991Copy full SHA for 81e5991
v03_pipeline/lib/paths.py
@@ -73,7 +73,9 @@ def _callset_path_hash(callset_path: str) -> str:
73
else:
74
# f.modification_time is None for directories
75
key = callset_path + str(
76
- max((f.modification_time if f.modification_time else 0) for f in shards)
+ max(
77
+ (f.modification_time if f.modification_time else 0) for f in shards
78
+ ),
79
)
80
except FileNotFoundError:
81
key = callset_path
0 commit comments