feat(cli): do not use "stringify" in help message

This commit is contained in:
D. Bohdan 2023-08-10 16:11:18 +00:00
parent a14c334f14
commit 794a4dc070
2 changed files with 4 additions and 4 deletions

View File

@ -84,8 +84,8 @@ options:
input format
--json-indent n, --indent-json n
JSON indentation
-k, --stringify stringify boolean, datetime, and null keys for JSON
and TOML and null values for TOML
-k, --stringify Turn into strings boolean, datetime, and null keys for
JSON and TOML and null values for TOML
-o output, --output output
output file
--of {cbor,json,msgpack,toml,yaml}, -of {cbor,json,msgpack,toml,yaml}, --output-format {cbor,json,msgpack,toml,yaml}

View File

@ -139,8 +139,8 @@ def parse_command_line(argv: List[str]) -> argparse.Namespace: # noqa: C901.
dest="stringify",
action="store_true",
help=(
"stringify boolean, datetime, and null keys for JSON and TOML "
"and null values for TOML"
"Turn into strings boolean, datetime, and null keys for JSON "
"and TOML and null values for TOML"
),
)