Fix accidentally introduced breaking change in number entity (#87383)

This commit is contained in:
Franck Nijhof 2023-02-04 14:32:33 +01:00 committed by GitHub
parent 9e775c43af
commit e55f11296e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ from homeassistant.helpers.entity_component import EntityComponent
from homeassistant.helpers.restore_state import ExtraStoredData, RestoreEntity
from homeassistant.helpers.typing import ConfigType
from .const import (
from .const import ( # noqa: F401
ATTR_MAX,
ATTR_MIN,
ATTR_STEP,
@ -32,6 +32,7 @@ from .const import (
DEFAULT_MAX_VALUE,
DEFAULT_MIN_VALUE,
DEFAULT_STEP,
DEVICE_CLASSES_SCHEMA,
DOMAIN,
SERVICE_SET_VALUE,
UNIT_CONVERTERS,