This commit is contained in:
Auric Vente
2024-07-25 20:55:45 -06:00
parent 8117a6a588
commit 788c5c698f
3 changed files with 20 additions and 1 deletions

View File

@@ -123,3 +123,10 @@ class ArgSpec:
type=str,
info="The internal name of the program",
)
ArgSpec.add_argument(
"speed",
type=str,
choices=["fast", "normal", "slow"],
info="Use this update speed",
)