Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Follow up to "Make chiptool.py a little easier to understand" #30468

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/tests/yaml/chiptool.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def chiptool_runner_options(f):
f = click.option('--server_path', type=click.Path(exists=True), default=None,
help='Path to a websocket server that will be executed to forward parsed command. Most likely you want to use chiptool.')(f)
f = click.option('--server_name', type=str, default='chip-tool',
help='If server_path is not provided, we use this argument to seach various directories within SDK binary that matches this name.')(f)
help='If server_path is not provided, we use this argument to seach various directories within the SDK for a binary that matches this name.')(f)
f = click.option('--server_arguments', type=str, default='interactive server',
help='Arguments to pass to the websocket server at launch.')(f)
f = click.option('--show_adapter_logs', type=bool, default=False, show_default=True,
Expand Down
Loading