fix: update help text for model configuration argument (#5533)

This pull request includes a small change to the
`python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py` file. The
change modifies the help message for the `--config` argument to remove
the part about leaving it empty to print a sample configuration. This is
already handled by `--sample-config`.

Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
This commit is contained in:
gagb 2025-02-13 16:07:32 -08:00 committed by GitHub
parent 0355b228ce
commit 3abc022ca9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ def main() -> None:
"--config",
type=str,
nargs=1,
help="The model configuration file to use. Leave empty to print a sample configuration.",
help="The model configuration file to use.",
)
parser.add_argument("--sample-config", action="store_true", help="Print a sample configuration to console.")