Skip to content

Commit

Permalink
Deprecate old backports and typing alias
Browse files Browse the repository at this point in the history
  • Loading branch information
dynasticorpheus authored and msvisser committed Oct 5, 2024
1 parent bf7a3ff commit 53146bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/remeha_home/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import async_timeout
from aiohttp.client_exceptions import ClientResponseError

from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity import DeviceInfo
from homeassistant.helpers.typing import HomeAssistantType
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
from homeassistant.exceptions import ConfigEntryAuthFailed

Expand All @@ -19,7 +19,7 @@
class RemehaHomeUpdateCoordinator(DataUpdateCoordinator):
"""Remeha Home update coordinator."""

def __init__(self, hass: HomeAssistantType, api: RemehaHomeAPI) -> None:
def __init__(self, hass: HomeAssistant, api: RemehaHomeAPI) -> None:
"""Initialize Remeha Home update coordinator."""
super().__init__(
hass,
Expand Down

0 comments on commit 53146bf

Please sign in to comment.