File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed
zha/application/platforms Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 66
77from zigpy .device import Device as ZigpyDevice
88from zigpy .profiles import zha
9- from zigpy .zcl .clusters import general , hvac
9+ from zigpy .zcl .clusters import general
1010import zigpy .zdo .types as zdo_t
1111
1212from tests .common import (
Original file line number Diff line number Diff line change 33from __future__ import annotations
44
55import functools
6- from typing import TYPE_CHECKING , Any , cast
6+ from typing import TYPE_CHECKING , Any
77
88from zha .application import Platform
9- from zha .application .platforms import (
10- BaseEntity ,
11- EntityStateChangedEvent ,
12- PlatformEntity ,
13- )
9+ from zha .application .platforms import EntityStateChangedEvent , PlatformEntity
1410from zha .application .registries import PLATFORM_ENTITIES
1511from zha .const import STATE_CHANGED
1612from zha .zigbee .cluster_handlers .const import (
2016from zha .zigbee .cluster_handlers .general import (
2117 ClientClusterHandler ,
2218 ClusterHandlerCommandEvent ,
23- LevelControlClientClusterHandler ,
2419)
2520
2621if TYPE_CHECKING :
Original file line number Diff line number Diff line change 1919from zha .exceptions import ZHAException
2020from zha .zigbee .cluster_handlers import ClusterAttributeUpdatedEvent
2121from zha .zigbee .cluster_handlers .const import (
22+ CLIENT_CLUSTER_HANDLER_OTA ,
2223 CLUSTER_HANDLER_ATTRIBUTE_UPDATED ,
2324 CLUSTER_HANDLER_OTA ,
24- CLIENT_CLUSTER_HANDLER_OTA ,
2525)
2626from zha .zigbee .endpoint import Endpoint
2727
You can’t perform that action at this time.
0 commit comments