Fix issue with guest August lock being included (#12893)

This commit is contained in:
Joe Lu 2018-03-04 01:14:47 -08:00 committed by Martin Hjelmare
parent 67c49a7662
commit 2e5b4946e1
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ _LOGGER = logging.getLogger(__name__)
_CONFIGURING = {}
REQUIREMENTS = ['py-august==0.3.0']
REQUIREMENTS = ['py-august==0.4.0']
DEFAULT_TIMEOUT = 10
ACTIVITY_FETCH_LIMIT = 10
@ -159,7 +159,7 @@ class AugustData:
self._api = api
self._access_token = access_token
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._doorbell_detail_by_id = {}

View file

@ -622,7 +622,7 @@ pushetta==1.0.15
pwmled==1.2.1
# homeassistant.components.august
py-august==0.3.0
py-august==0.4.0
# homeassistant.components.canary
py-canary==0.4.0