File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments