diff --git a/homeassistant/components/pioneer/media_player.py b/homeassistant/components/pioneer/media_player.py index 5fd0c69dfbc4..f91a9754713f 100644 --- a/homeassistant/components/pioneer/media_player.py +++ b/homeassistant/components/pioneer/media_player.py @@ -37,7 +37,7 @@ CONF_SOURCES = "sources" DEFAULT_NAME = "Pioneer AVR" DEFAULT_PORT = 23 # telnet default. Some Pioneer AVRs use 8102 DEFAULT_TIMEOUT = None -DEFAULT_SOURCES = {} +DEFAULT_SOURCES: dict[str, str] = {} SUPPORT_PIONEER = ( SUPPORT_PAUSE diff --git a/mypy.ini b/mypy.ini index 550962650af2..56c483c94aa1 100644 --- a/mypy.ini +++ b/mypy.ini @@ -2155,9 +2155,6 @@ ignore_errors = true [mypy-homeassistant.components.philips_js.*] ignore_errors = true -[mypy-homeassistant.components.pioneer.*] -ignore_errors = true - [mypy-homeassistant.components.plaato.*] ignore_errors = true diff --git a/script/hassfest/mypy_config.py b/script/hassfest/mypy_config.py index a2288ccf61f9..33a640018f9c 100644 --- a/script/hassfest/mypy_config.py +++ b/script/hassfest/mypy_config.py @@ -60,7 +60,6 @@ IGNORED_MODULES: Final[list[str]] = [ "homeassistant.components.onvif.*", "homeassistant.components.ozw.*", "homeassistant.components.philips_js.*", - "homeassistant.components.pioneer.*", "homeassistant.components.plaato.*", "homeassistant.components.plex.*", "homeassistant.components.plugwise.*",