Improve typing in plaato (#87074)

pull/86056/head^2
epenet 2023-02-02 22:31:24 +01:00 committed by GitHub
parent 275438adf3
commit ea3395d576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -213,11 +213,11 @@ class PlaatoCoordinator(DataUpdateCoordinator):
def __init__(
self,
hass,
auth_token,
hass: HomeAssistant,
auth_token: str,
device_type: PlaatoDeviceType,
update_interval: timedelta,
):
) -> None:
"""Initialize."""
self.api = Plaato(auth_token=auth_token)
self.hass = hass