From 3abc022ca974618c12807c8baa08e4c2ef391f02 Mon Sep 17 00:00:00 2001 From: gagb Date: Thu, 13 Feb 2025 16:07:32 -0800 Subject: [PATCH] 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 --- python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py b/python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py index f9191e35e..8339b6516 100644 --- a/python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py +++ b/python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py @@ -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.")