Remove point from mypy ignore list (#64524)

Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
epenet 2022-01-20 09:35:31 +01:00 committed by GitHub
parent 15bbff960e
commit bb7653e477
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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.*",