mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 16:57:53 +00:00
Cleanup mypy ignored modules (#64341)
Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
parent
de19483632
commit
d1a2ce4b78
27
mypy.ini
27
mypy.ini
@ -2015,9 +2015,6 @@ warn_unreachable = false
|
||||
[mypy-homeassistant.components.blueprint.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.climacell.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.cloud.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2069,9 +2066,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.geniushub.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.glances.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.google_assistant.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2093,9 +2087,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.here_travel_time.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.hisense_aehw4a1.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.home_connect.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2117,9 +2108,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.icloud.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.image.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.incomfort.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2180,9 +2168,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.meteo_france.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.metoffice.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.minecraft_server.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2192,9 +2177,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.motion_blinds.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.mullvad.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.ness_alarm.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2210,9 +2192,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.nilu.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.nsw_fuel_station.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.nuki.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2228,9 +2207,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.onboarding.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.ondilo_ico.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.onvif.*]
|
||||
ignore_errors = true
|
||||
|
||||
@ -2300,9 +2276,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.somfy.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.somfy_mylink.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.sonos.*]
|
||||
ignore_errors = true
|
||||
|
||||
|
@ -17,7 +17,6 @@ from .model import Config, Integration
|
||||
# Do your best to not add anything new here.
|
||||
IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.blueprint.*",
|
||||
"homeassistant.components.climacell.*",
|
||||
"homeassistant.components.cloud.*",
|
||||
"homeassistant.components.config.*",
|
||||
"homeassistant.components.conversation.*",
|
||||
@ -35,7 +34,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.foscam.*",
|
||||
"homeassistant.components.freebox.*",
|
||||
"homeassistant.components.geniushub.*",
|
||||
"homeassistant.components.glances.*",
|
||||
"homeassistant.components.google_assistant.*",
|
||||
"homeassistant.components.gree.*",
|
||||
"homeassistant.components.growatt_server.*",
|
||||
@ -43,7 +41,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.harmony.*",
|
||||
"homeassistant.components.hassio.*",
|
||||
"homeassistant.components.here_travel_time.*",
|
||||
"homeassistant.components.hisense_aehw4a1.*",
|
||||
"homeassistant.components.home_connect.*",
|
||||
"homeassistant.components.home_plus_control.*",
|
||||
"homeassistant.components.homekit.*",
|
||||
@ -51,7 +48,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.honeywell.*",
|
||||
"homeassistant.components.iaqualink.*",
|
||||
"homeassistant.components.icloud.*",
|
||||
"homeassistant.components.image.*",
|
||||
"homeassistant.components.incomfort.*",
|
||||
"homeassistant.components.influxdb.*",
|
||||
"homeassistant.components.input_datetime.*",
|
||||
@ -72,23 +68,19 @@ IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.lyric.*",
|
||||
"homeassistant.components.melcloud.*",
|
||||
"homeassistant.components.meteo_france.*",
|
||||
"homeassistant.components.metoffice.*",
|
||||
"homeassistant.components.minecraft_server.*",
|
||||
"homeassistant.components.mobile_app.*",
|
||||
"homeassistant.components.motion_blinds.*",
|
||||
"homeassistant.components.mullvad.*",
|
||||
"homeassistant.components.ness_alarm.*",
|
||||
"homeassistant.components.nest.legacy.*",
|
||||
"homeassistant.components.netgear.*",
|
||||
"homeassistant.components.nightscout.*",
|
||||
"homeassistant.components.nilu.*",
|
||||
"homeassistant.components.nsw_fuel_station.*",
|
||||
"homeassistant.components.nuki.*",
|
||||
"homeassistant.components.nws.*",
|
||||
"homeassistant.components.nzbget.*",
|
||||
"homeassistant.components.omnilogic.*",
|
||||
"homeassistant.components.onboarding.*",
|
||||
"homeassistant.components.ondilo_ico.*",
|
||||
"homeassistant.components.onvif.*",
|
||||
"homeassistant.components.ovo_energy.*",
|
||||
"homeassistant.components.ozw.*",
|
||||
@ -112,7 +104,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.smartthings.*",
|
||||
"homeassistant.components.solaredge.*",
|
||||
"homeassistant.components.somfy.*",
|
||||
"homeassistant.components.somfy_mylink.*",
|
||||
"homeassistant.components.sonos.*",
|
||||
"homeassistant.components.spotify.*",
|
||||
"homeassistant.components.stt.*",
|
||||
|
Loading…
x
Reference in New Issue
Block a user