Skip to content

Commit

Permalink
Fine-tune arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbovill committed Nov 5, 2024
1 parent 8852a03 commit 7a7d01b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions python/lsst/ts/IntegrationTests/csc_state_transition.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,23 +93,26 @@ def csc_state_transition() -> None:
parser = argparse.ArgumentParser()
parser.add_argument(
"csc",
metavar="csc",
nargs="?",
metavar="CSC[:index]",
nargs="1",
required=True,
type=str,
help="Specify which CSC to command (case sensitive).",
help="Specify which CSC[:index] to command (case sensitive).",
)
parser.add_argument(
"state",
metavar="state",
nargs="?",
nargs="1",
required=True,
type=str,
choices=state_list,
help="Specify to which state to transition.",
)
parser.add_argument(
"sq_index",
metavar="sq_index",
nargs="?",
metavar="scriptqueue_index",
nargs="1",
required=True,
type=int,
choices=[1, 2, 3],
help="Specify which ScriptQueue to use.",
Expand Down

0 comments on commit 7a7d01b

Please sign in to comment.