This commit is contained in:
Auric Vente
2024-07-26 19:43:55 -06:00
parent ef60099067
commit 750abdff39
7 changed files with 52 additions and 17 deletions

View File

@@ -142,3 +142,21 @@ class ArgSpec:
action="store_true",
info="Start with clean ants data",
)
ArgSpec.add_argument(
"fast_minutes",
type=float,
info="The number of minutes between fast updates",
)
ArgSpec.add_argument(
"normal_minutes",
type=float,
info="The number of minutes between normal updates",
)
ArgSpec.add_argument(
"slow_minutes",
type=float,
info="The number of minutes between slow updates",
)