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 1c305ab commit 0296fffCopy full SHA for 0296fff
v03_pipeline/lib/paths.py
@@ -71,7 +71,10 @@ def _callset_path_hash(callset_path: str) -> str:
71
if not shards:
72
key = callset_path
73
else:
74
- key = callset_path + str(max(f.modification_time for f in shards))
+ # 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)
77
+ )
78
except FileNotFoundError:
79
80
return hashlib.sha256(
0 commit comments