Skip to content

Commit

Permalink
Merge pull request #383 from vidofnir/cli-arg-help
Browse files Browse the repository at this point in the history
Fix service help text reference to positional argument 'service types'
  • Loading branch information
szypulka authored Jun 3, 2024
2 parents cbe0a10 + c066858 commit adafaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiven/client/cliarg.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def wrapped(self: CommandLineTool) -> T:
)
arg.service_name = arg("service_name", help="Service name")
arg.service_name_mandatory = arg("service_name", help="Service name", required=True)
arg.service_type = arg("-t", "--service-type", help="Type of service (see 'service list-types')")
arg.service_type = arg("-t", "--service-type", help="Type of service (see 'service types')")
arg.static_ip_id = arg("static_ip_id", help="Static IP address ID")
arg.ns_name = arg("ns_name", help="Namespace name")
arg.ns_type = arg("--ns-type", help="Namespace type ('aggregated' or 'unaggregated')", required=True)
Expand Down

0 comments on commit adafaef

Please sign in to comment.