We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a2e89 commit 6db053aCopy full SHA for 6db053a
starrynight/src/starrynight/algorithms/illum_calc.py
@@ -77,7 +77,7 @@ def write_loaddata(
77
index.plate_id,
78
index.site_id,
79
index.well_id,
80
- f"{int(index.cycle_id):02}",
+ f"{int(index.cycle_id):02}" if index.cycle_id is not None else 0,
81
# Filename heads
82
*[f"{index.filename}" for _ in range(len(filename_heads))],
83
# Frame heads
0 commit comments