diff --git a/homeassistant/components/point/__init__.py b/homeassistant/components/point/__init__.py index dc88ebc991a..288c16df14a 100644 --- a/homeassistant/components/point/__init__.py +++ b/homeassistant/components/point/__init__.py @@ -172,10 +172,12 @@ async def handle_webhook(hass, webhook_id, request): class MinutPointClient: """Get the latest data and update the states.""" - def __init__(self, hass: HomeAssistant, config_entry: ConfigEntry, session): + def __init__( + self, hass: HomeAssistant, config_entry: ConfigEntry, session: PointSession + ) -> None: """Initialize the Minut data object.""" - self._known_devices = set() - self._known_homes = set() + self._known_devices: set[str] = set() + self._known_homes: set[str] = set() self._hass = hass self._config_entry = config_entry self._is_available = True diff --git a/mypy.ini b/mypy.ini index 895f25d1835..550962650af 100644 --- a/mypy.ini +++ b/mypy.ini @@ -2170,9 +2170,6 @@ ignore_errors = true [mypy-homeassistant.components.plum_lightpad.*] ignore_errors = true -[mypy-homeassistant.components.point.*] -ignore_errors = true - [mypy-homeassistant.components.profiler.*] ignore_errors = true diff --git a/script/hassfest/mypy_config.py b/script/hassfest/mypy_config.py index 70cc71265da..a2288ccf61f 100644 --- a/script/hassfest/mypy_config.py +++ b/script/hassfest/mypy_config.py @@ -65,7 +65,6 @@ IGNORED_MODULES: Final[list[str]] = [ "homeassistant.components.plex.*", "homeassistant.components.plugwise.*", "homeassistant.components.plum_lightpad.*", - "homeassistant.components.point.*", "homeassistant.components.profiler.*", "homeassistant.components.ring.*", "homeassistant.components.sharkiq.*",