From b50af627b2a13558694377494d424da681b76280 Mon Sep 17 00:00:00 2001 From: Mark Parker Date: Sat, 7 Sep 2024 14:26:59 +0100 Subject: [PATCH] fix path error in imports --- custom_components/wiser/binary_sensor.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/custom_components/wiser/binary_sensor.py b/custom_components/wiser/binary_sensor.py index 6a502a5..9b23905 100644 --- a/custom_components/wiser/binary_sensor.py +++ b/custom_components/wiser/binary_sensor.py @@ -2,11 +2,6 @@ import logging -from config.custom_components.wiser.helpers import ( - get_device_name, - get_identifier, - get_unique_id, -) from homeassistant.components.binary_sensor import ( BinarySensorDeviceClass, BinarySensorEntity, @@ -15,6 +10,7 @@ from homeassistant.helpers.update_coordinator import CoordinatorEntity from .const import DATA, DOMAIN, MANUFACTURER +from .helpers import get_device_name, get_identifier, get_unique_id _LOGGER = logging.getLogger(__name__)