From 5b7e4bc47959d1e9b8c2df43eb0d951f88d0ab51 Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Wed, 15 Jun 2022 15:40:31 +0000 Subject: [PATCH] 0.3.8 hotfix --- custom_components/nest_protect/manifest.json | 4 ++-- custom_components/nest_protect/pynest/models.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/nest_protect/manifest.json b/custom_components/nest_protect/manifest.json index 10a58cd..d56f8f6 100644 --- a/custom_components/nest_protect/manifest.json +++ b/custom_components/nest_protect/manifest.json @@ -9,10 +9,10 @@ "@imicknl" ], "iot_class": "cloud_polling", - "version": "0.3.7", + "version": "0.3.8", "dhcp": [ { "macaddress": "CCA7C1*" } ] -} +} \ No newline at end of file diff --git a/custom_components/nest_protect/pynest/models.py b/custom_components/nest_protect/pynest/models.py index 13c3c19..ead83f6 100644 --- a/custom_components/nest_protect/pynest/models.py +++ b/custom_components/nest_protect/pynest/models.py @@ -43,7 +43,7 @@ class NestResponse: weave: dict[str, str] user: str is_staff: bool - error: dict | None + error: dict | None = None urls: NestUrls = field(default_factory=NestUrls) limits: NestLimits = field(default_factory=NestLimits)