Skip to content
Open

test #81

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
6 changes: 6 additions & 0 deletions magemaker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,12 @@ def runner():
version=f"{GREEN}magemaker v{VERSION}{NC}",
help="Show magemaker version and exit"
)
parser.add_argument(
'--query',
action='query',
help="path to YAML query configuration file",
type=str
)

parser.add_argument(
"--hf",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code diff adds a new command-line argument --query to an argument parser. The --query option expects a string value specifying the path to a YAML query configuration file. The argument uses a custom action called 'query' and includes a help message describing its purpose.

Expand Down
Loading