From ee78d2a030749bab81c0475837eb87e1eacb88db Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sat, 23 Sep 2023 19:52:36 -0300 Subject: [PATCH] Fixed wrong import --- custom_components/ute/sensor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_components/ute/sensor.py b/custom_components/ute/sensor.py index f71efa2..362a5b8 100644 --- a/custom_components/ute/sensor.py +++ b/custom_components/ute/sensor.py @@ -5,7 +5,8 @@ from typing import Callable, Optional from ute_wrapper.ute import UTEClient from homeassistant import config_entries, core from homeassistant.components.sensor import PLATFORM_SCHEMA -from homeassistant.const import CONF_EMAIL, CONF_PHONE_NUMBER, CONF_UTE_DEVICE_ID, CONF_UTE_AVERAGE_COST_PER_KWH +from homeassistant.const import CONF_EMAIL +from .config_flow import CONF_PHONE_NUMBER, CONF_UTE_DEVICE_ID, CONF_UTE_AVERAGE_COST_PER_KWH from homeassistant.helpers.entity import Entity from homeassistant.helpers.typing import ( ConfigType,