Remove reference to battery percentage in help text

This commit is contained in:
Adam Goldsmith 2022-11-30 12:59:42 -05:00
parent 5bbb06cdba
commit ca5c29b57c

View File

@ -166,14 +166,14 @@ def main():
"--warning",
metavar="RANGE",
required=True,
help="return warning if battery percentage is outside RANGE",
help="return warning if value is outside %(metavar)s",
)
argp.add_argument(
"-c",
"--critical",
metavar="RANGE",
required=True,
help="return critical if battery percentage is outside RANGE",
help="return critical if value is outside %(metavar)s",
)
argp.add_argument(
"--min",