diff --git a/b2/_cli/argcompleters.py b/b2/_cli/argcompleters.py index 8b6ff700b..a3d12dca8 100644 --- a/b2/_cli/argcompleters.py +++ b/b2/_cli/argcompleters.py @@ -57,7 +57,7 @@ def file_name_completer(api: B2Api, parsed_args, **kwargs): @_with_api def b2uri_file_completer(api: B2Api, prefix: str, **kwargs): """ - Completes B2 URI pointing to a file-like object in a bucket. + Complete B2 URI pointing to a file-like object in a bucket. """ if prefix.startswith('b2://'): prefix_without_scheme = removeprefix(prefix, 'b2://') diff --git a/b2/_cli/b2args.py b/b2/_cli/b2args.py index 3277f45de..4c9b4e2a1 100644 --- a/b2/_cli/b2args.py +++ b/b2/_cli/b2args.py @@ -35,7 +35,7 @@ def b2_file_uri(value: str) -> B2URIBase: def add_b2_file_argument(parser: argparse.ArgumentParser, name="B2_URI"): """ - Add an argument to the parser that must be a B2 URI pointing to a file. + Add a B2 URI pointing to a file as an argument to the parser. """ parser.add_argument( name,