diff --git a/homeassistant/components/sensor/__init__.py b/homeassistant/components/sensor/__init__.py index e27f3a79c29..4fb6c83c441 100644 --- a/homeassistant/components/sensor/__init__.py +++ b/homeassistant/components/sensor/__init__.py @@ -13,7 +13,7 @@ import voluptuous as vol from homeassistant.backports.enum import StrEnum from homeassistant.config_entries import ConfigEntry -from homeassistant.const import ( # noqa: F401 +from homeassistant.const import ( # noqa: F401, pylint: disable=[hass-deprecated-import] CONF_UNIT_OF_MEASUREMENT, DEVICE_CLASS_AQI, DEVICE_CLASS_BATTERY, diff --git a/pylint/plugins/hass_imports.py b/pylint/plugins/hass_imports.py index be105caf9a0..0e467fd777c 100644 --- a/pylint/plugins/hass_imports.py +++ b/pylint/plugins/hass_imports.py @@ -50,6 +50,10 @@ _OBSOLETE_IMPORT: dict[str, list[ObsoleteImportMatch]] = { ), ], "homeassistant.components.sensor": [ + ObsoleteImportMatch( + reason="replaced by SensorDeviceClass enum", + constant=re.compile(r"^DEVICE_CLASS_(\w*)$"), + ), ObsoleteImportMatch( reason="replaced by SensorStateClass enum", constant=re.compile(r"^STATE_CLASS_(\w*)$"), @@ -68,6 +72,10 @@ _OBSOLETE_IMPORT: dict[str, list[ObsoleteImportMatch]] = { ), ], "homeassistant.const": [ + ObsoleteImportMatch( + reason="replaced by SensorDeviceClass enum", + constant=re.compile(r"^DEVICE_CLASS_(\w*)$"), + ), ObsoleteImportMatch( reason="replaced by EntityCategory enum", constant=re.compile(r"^(ENTITY_CATEGORY_(\w*))|(ENTITY_CATEGORIES)$"),