Skip to content

Commit

Permalink
Remove % from help string
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmcalpine committed Oct 29, 2024
1 parent bed26bc commit 3e03e68
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/dataregistry_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,16 @@ def get_parser():
help="List datasets for a given owner type",
choices=["user", "group", "production", "project"],
)
arg_ls.add_argument("--name", help="Only return datasets with a given name (% can be used as a wildcard)")
arg_ls.add_argument(
"--name", help="Only return datasets with a given name (wildcard support)"
)
arg_ls.add_argument("--all", help="List all datasets", action="store_true")
arg_ls.add_argument(
"--return_cols", help="List of columns to return in the query", nargs="+", type=str)
"--return_cols",
help="List of columns to return in the query",
nargs="+",
type=str,
)
arg_ls.add_argument(
"--max_rows",
help="Maximum number of rows to print (default 500)",
Expand Down

0 comments on commit 3e03e68

Please sign in to comment.