Make help strings lowercase, for consistency

This commit is contained in:
Adam Goldsmith 2022-11-29 17:55:46 -05:00
parent f886e9afeb
commit 4dd2a0c5b5

View File

@ -151,7 +151,7 @@ def main():
"--device-class",
type=str,
required=True,
help="Device class of entities to monitor",
help="device class of entities to monitor",
)
argp.add_argument(
"-w",
@ -170,15 +170,15 @@ def main():
argp.add_argument(
"--min",
type=float,
help="Min for performance data",
help="min for performance data",
)
argp.add_argument(
"--max",
type=float,
help="Max for performance data",
help="max for performance data",
)
argp.add_argument(
"-a", "--attribute", type=str, help="Check attribute instead of value"
"-a", "--attribute", type=str, help="check attribute instead of value"
)
argp.add_argument(
"-f",
@ -186,12 +186,12 @@ def main():
type=key_value,
default=[],
nargs="*",
help="Filter by 'attribute=value'",
help="filter by 'attribute=value'",
)
argp.add_argument(
"--friendly",
action="store_true",
help="Use friendly name, when available",
help="use friendly name, when available",
)
args = argp.parse_args()