Skip to content

Commit

Permalink
Fix flag_baselines argument to VLBI
Browse files Browse the repository at this point in the history
  • Loading branch information
Frits Sweijen committed Feb 27, 2024
1 parent 21b5d4a commit 7b481e6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions runners/create_ms_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,8 @@ def add_arguments_vlbi_delay_calibrator(parser):
parser.add_argument(
"--flag_baselines",
type=str,
default='[]',
nargs="*",
default=[],
help="The pattern used by DP3 to flag baselines, e.g. [ CS013HBA*&&* ].",
)
parser.add_argument(
Expand Down Expand Up @@ -867,7 +868,8 @@ def add_arguments_vlbi_setup(parser):
parser.add_argument(
"--flag_baselines",
type=str,
default='[]',
nargs="*",
default=[],
help="DP3-compatible pattern for baselines or stations to be flagged (may be an empty list.",
)
parser.add_argument(
Expand Down

0 comments on commit 7b481e6

Please sign in to comment.