Bump yalexs to 8.0.2 (#123817)

This commit is contained in:
J. Nick Koston 2024-08-13 14:06:38 -05:00 committed by GitHub
parent 493859e589
commit f14d5ba5f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ from typing import Any
import aiohttp
import voluptuous as vol
from yalexs.authenticator import ValidationResult
from yalexs.authenticator_common import ValidationResult
from yalexs.const import BRANDS, DEFAULT_BRAND
from yalexs.manager.exceptions import CannotConnect, InvalidAuth, RequireValidation

View File

@ -28,5 +28,5 @@
"documentation": "https://www.home-assistant.io/integrations/august",
"iot_class": "cloud_push",
"loggers": ["pubnub", "yalexs"],
"requirements": ["yalexs==6.5.0", "yalexs-ble==2.4.3"]
"requirements": ["yalexs==8.0.2", "yalexs-ble==2.4.3"]
}

View File

@ -2953,7 +2953,7 @@ yalesmartalarmclient==0.3.9
yalexs-ble==2.4.3
# homeassistant.components.august
yalexs==6.5.0
yalexs==8.0.2
# homeassistant.components.yeelight
yeelight==0.7.14

View File

@ -2336,7 +2336,7 @@ yalesmartalarmclient==0.3.9
yalexs-ble==2.4.3
# homeassistant.components.august
yalexs==6.5.0
yalexs==8.0.2
# homeassistant.components.yeelight
yeelight==0.7.14

View File

@ -25,7 +25,7 @@ from yalexs.activity import (
DoorOperationActivity,
LockOperationActivity,
)
from yalexs.authenticator import AuthenticationState
from yalexs.authenticator_common import AuthenticationState
from yalexs.const import Brand
from yalexs.doorbell import Doorbell, DoorbellDetail
from yalexs.lock import Lock, LockDetail

View File

@ -2,7 +2,7 @@
from unittest.mock import patch
from yalexs.authenticator import ValidationResult
from yalexs.authenticator_common import ValidationResult
from yalexs.manager.exceptions import CannotConnect, InvalidAuth, RequireValidation
from homeassistant import config_entries

View File

@ -50,5 +50,5 @@ async def _patched_refresh_access_token(
)
await august_gateway.async_refresh_access_token_if_needed()
refresh_access_token_mock.assert_called()
assert august_gateway.access_token == new_token
assert await august_gateway.async_get_access_token() == new_token
assert august_gateway.authentication.access_token_expires == new_token_expire_time