Skip to content

Commit 0228dc1

Browse files
committed
placate ruff
1 parent 03f1247 commit 0228dc1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

rubin_sim/maf/chimera_progress.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def _dayobs_from_run_name(run_name: str) -> int | None:
6262

6363

6464
def _dayobs_from_filename(path: str) -> int | None:
65-
"""Extract transition dayobs integer from a chimera HDF5 filename, or None."""
65+
"""Extract transition dayobs integer from a chimera HDF5
66+
filename, or None."""
6667
basename = os.path.basename(path)
6768
m = re.match(r"^chimera_(\d{8})\.h5$", basename)
6869
return int(m.group(1)) if m else None
@@ -400,7 +401,8 @@ def run_chimera_batches_cmd(chimera_dir, out_dir, batch):
400401
help="Output HDF5 file for the summary table.",
401402
)
402403
def make_chimera_summary_table_cmd(results_db, out_file):
403-
"""Query a results_db to produce a summary table (one row per transition date)."""
404+
"""Query a results_db to produce a summary table
405+
(one row per transition date)."""
404406
table = make_chimera_summary_table(results_db)
405407
if table.empty:
406408
click.echo("Warning: summary table is empty.")

0 commit comments

Comments
 (0)