mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 16:57:53 +00:00
Remove point from mypy ignore list (#64524)
Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
parent
15bbff960e
commit
bb7653e477
@ -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
|
||||
|
3
mypy.ini
3
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
|
||||
|
||||
|
@ -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.*",
|
||||
|
Loading…
x
Reference in New Issue
Block a user