Skip to content

Commit c1cbf39

Browse files
author
Laurent Guerard
committed
style(workflow): πŸ’„ ruff-format run_multi.py
CI's ruff format --check failed on this file -- missed running the formatter locally before the deconv_cilia commits.
1 parent 75d83b4 commit c1cbf39

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

β€Žworkflow/scripts/run_multi.pyβ€Ž

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,25 @@ def main() -> None:
155155
ws_a = wb.active
156156
ws_a.title = a_name[:31] # Excel sheet-name length limit
157157
ws_a.append(
158-
[f"{a_name}_id", f"{b_name}_id", "overlap_voxels", "overlap_fraction"]
158+
[
159+
f"{a_name}_id",
160+
f"{b_name}_id",
161+
"overlap_voxels",
162+
"overlap_fraction",
163+
]
159164
)
160165
for a_id in a_ids:
161166
m = table.get(a_id)
162167
if m is None:
163168
ws_a.append([a_id, None, 0, 0]) # no overlap -- still counted
164169
else:
165170
ws_a.append(
166-
[a_id, m["match"], m["overlap_voxels"], m["overlap_fraction"]]
171+
[
172+
a_id,
173+
m["match"],
174+
m["overlap_voxels"],
175+
m["overlap_fraction"],
176+
]
167177
)
168178

169179
ws_b = wb.create_sheet(title=b_name[:31])

0 commit comments

Comments
Β (0)