mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00:00
Fix issue with guest August lock being included (#12893)
This commit is contained in:
parent
67c49a7662
commit
2e5b4946e1
@ -21,7 +21,7 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
|
|
||||||
_CONFIGURING = {}
|
_CONFIGURING = {}
|
||||||
|
|
||||||
REQUIREMENTS = ['py-august==0.3.0']
|
REQUIREMENTS = ['py-august==0.4.0']
|
||||||
|
|
||||||
DEFAULT_TIMEOUT = 10
|
DEFAULT_TIMEOUT = 10
|
||||||
ACTIVITY_FETCH_LIMIT = 10
|
ACTIVITY_FETCH_LIMIT = 10
|
||||||
@ -159,7 +159,7 @@ class AugustData:
|
|||||||
self._api = api
|
self._api = api
|
||||||
self._access_token = access_token
|
self._access_token = access_token
|
||||||
self._doorbells = self._api.get_doorbells(self._access_token) or []
|
self._doorbells = self._api.get_doorbells(self._access_token) or []
|
||||||
self._locks = self._api.get_locks(self._access_token) or []
|
self._locks = self._api.get_operable_locks(self._access_token) or []
|
||||||
self._house_ids = [d.house_id for d in self._doorbells + self._locks]
|
self._house_ids = [d.house_id for d in self._doorbells + self._locks]
|
||||||
|
|
||||||
self._doorbell_detail_by_id = {}
|
self._doorbell_detail_by_id = {}
|
||||||
|
@ -622,7 +622,7 @@ pushetta==1.0.15
|
|||||||
pwmled==1.2.1
|
pwmled==1.2.1
|
||||||
|
|
||||||
# homeassistant.components.august
|
# homeassistant.components.august
|
||||||
py-august==0.3.0
|
py-august==0.4.0
|
||||||
|
|
||||||
# homeassistant.components.canary
|
# homeassistant.components.canary
|
||||||
py-canary==0.4.0
|
py-canary==0.4.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user