File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
custom_components/plugwise_usb
tests/components/plugwise_usb Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 11"""Plugwise USB stick base entity."""
22from __future__ import annotations
33
4- from typing import Any
5-
64from collections .abc import Callable
75from dataclasses import dataclass
86import logging
7+ from typing import Any
98
109from homeassistant .helpers .entity import EntityDescription
1110from homeassistant .helpers .update_coordinator import (
1211 CoordinatorEntity ,
1312)
1413from plugwise_usb .api import PUSHING_FEATURES , NodeFeature , NodeInfo
15- from homeassistant .helpers .update_coordinator import CoordinatorEntity
1614
1715from .const import DOMAIN
1816from .coordinator import PlugwiseUSBDataUpdateCoordinator
Original file line number Diff line number Diff line change 88from homeassistant .components .plugwise_usb .const import CONF_USB_PATH , DOMAIN
99from homeassistant .config_entries import SOURCE_USER
1010from homeassistant .const import CONF_SOURCE
11- from homeassistant .core import HomeAssistant
1211from homeassistant .data_entry_flow import FlowResultType , InvalidData
1312from plugwise_usb .exceptions import StickError
1413
You can’t perform that action at this time.
0 commit comments