Skip to content

Commit

Permalink
Fix typo in help and clarify device ID
Browse files Browse the repository at this point in the history
  • Loading branch information
mill1000 committed Sep 7, 2023
1 parent 6982d87 commit 35b3e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msmart/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,13 @@ def main() -> NoReturn:
help="Automatically authenticate V3 devices.",
action="store_true")
query_parser.add_argument("--id",
help="Device ID. Required for manual authentication.",
help="Device ID for V3 devices.",
dest="device_id", type=int, default=0)
query_parser.add_argument("--token",
help="Authentication token for V3 devices.",
type=bytes.fromhex)
query_parser.add_argument("--key",
help="Authentication ke for V3 devices.",
help="Authentication key for V3 devices.",
type=bytes.fromhex)
query_parser.set_defaults(func=_query)

Expand Down

0 comments on commit 35b3e3e

Please sign in to comment.