diff --git a/homeassistant/components/webostv/media_player.py b/homeassistant/components/webostv/media_player.py index d94ab8a7c26..c451645e013 100644 --- a/homeassistant/components/webostv/media_player.py +++ b/homeassistant/components/webostv/media_player.py @@ -127,7 +127,7 @@ class LgWebOSMediaPlayerEntity(MediaPlayerEntity): self._paused = False self._current_source = None - self._source_list = {} + self._source_list: dict = {} async def async_added_to_hass(self): """Connect and subscribe to dispatcher signals and state updates.""" diff --git a/mypy.ini b/mypy.ini index 2f4b20747f9..1fd92182a49 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1735,9 +1735,6 @@ ignore_errors = true [mypy-homeassistant.components.volumio.*] ignore_errors = true -[mypy-homeassistant.components.webostv.*] -ignore_errors = true - [mypy-homeassistant.components.wemo.*] ignore_errors = true diff --git a/script/hassfest/mypy_config.py b/script/hassfest/mypy_config.py index a0e80af2a2e..b795e6c03c8 100644 --- a/script/hassfest/mypy_config.py +++ b/script/hassfest/mypy_config.py @@ -178,7 +178,6 @@ IGNORED_MODULES: Final[list[str]] = [ "homeassistant.components.verisure.*", "homeassistant.components.vizio.*", "homeassistant.components.volumio.*", - "homeassistant.components.webostv.*", "homeassistant.components.wemo.*", "homeassistant.components.wink.*", "homeassistant.components.withings.*",