Skip to content

Commit

Permalink
ruff is always right
Browse files Browse the repository at this point in the history
  • Loading branch information
siku2 committed Aug 13, 2023
1 parent 34b844c commit 5fd90ed
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions custom_components/vzug/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,14 @@ class CommandValue(typing.TypedDict):
)


AiFwVersion = typing.TypedDict(
"AiFwVersion",
{
"fn": str,
"SW": str,
"SD": str,
"HW": str,
"apiVersion": str,
"phy": str,
"deviceUuid": str,
},
total=False,
)
class AiFwVersion(typing.TypedDict, total=False):
fn: str
SW: str
SD: str
HW: str
apiVersion: str
phy: str
deviceUuid: str


class VZugApi:
Expand Down

0 comments on commit 5fd90ed

Please sign in to comment.