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 4e850c6 commit f8687fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/lsst/ts/IntegrationTests/csc_state_transition.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,22 +94,22 @@ def csc_state_transition() -> None:
parser.add_argument(
"csc",
metavar="CSC[:index]",
nargs="1",
nargs=1,
type=str,
help="Specify which CSC[:index] to command (case sensitive).",
)
parser.add_argument(
"state",
metavar="state",
nargs="1",
nargs=1,
type=str,
choices=state_list,
help="Specify to which state to transition.",
)
parser.add_argument(
"sq_index",
metavar="scriptqueue_index",
nargs="1",
nargs=1,
type=int,
choices=[1, 2, 3],
help="Specify which ScriptQueue to use.",
Expand Down

0 comments on commit f8687fb

Please sign in to comment.