Skip to content

Commit 0d0b10d

Browse files
committed
fix failing roundtrip test
1 parent 7dfcffb commit 0d0b10d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/pfb_imaging/cli/hci.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -371,13 +371,6 @@ def hci(
371371
help="Object store memory (in GB) when using the distributed scheduler.",
372372
),
373373
] = None,
374-
temp_dir: Annotated[
375-
Directory | None,
376-
typer.Option(
377-
parser=Path,
378-
help="A temporary directory to store ephemeral files.",
379-
),
380-
] = None,
381374
cube_to_fits: Annotated[
382375
bool,
383376
typer.Option(
@@ -392,6 +385,13 @@ def hci(
392385
"minvar -> use minimum between correlations (wsclean Stokes I style).",
393386
),
394387
] = "l2",
388+
temp_dir: Annotated[
389+
Directory | None,
390+
typer.Option(
391+
parser=Path,
392+
help="A temporary directory to store ephemeral files.",
393+
),
394+
] = None,
395395
):
396396
"""
397397
High cadence imaging algorithm.
@@ -464,7 +464,7 @@ def hci(
464464
cg_tol=cg_tol,
465465
cg_maxit=cg_maxit,
466466
object_store_memory=object_store_memory,
467-
temp_dir=temp_dir,
468467
cube_to_fits=cube_to_fits,
469468
wgt_mode=wgt_mode,
469+
temp_dir=temp_dir,
470470
)

0 commit comments

Comments
 (0)