fix help msg (#2079)

* feat: make rate limit a cmdarg

* review: rename cmd arg

* fix: replace rate_limit with max_threads

* fix: docstring typo
This commit is contained in:
Andrew Ferlitsch
2023-07-14 18:01:36 +00:00
committed by GitHub
parent 04540495f0
commit 6b1c0b35e8
@@ -124,7 +124,7 @@ parser.add_argument(
parser.add_argument(
"--concurrent_notebooks",
type=int,
help="Maximu number of parallel notebook executions per minute",
help="Maximum number of parallel notebook executions per minute",
default=10,
required=False,
)