File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
zhaquirks/schneiderelectric/clusters Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- from typing import Any , Coroutine , Union
1
+ from typing import Any , Coroutine , Dict , Union
2
2
3
3
from zigpy .quirks import CustomCluster
4
4
import zigpy .types as t
11
11
class SEBasic (CustomCluster , Basic ):
12
12
"""Schneider Electric manufacturer specific Basic cluster."""
13
13
14
- attributes : dict [int , ZCLAttributeDef ] = Basic .attributes .copy ()
14
+ attributes : Dict [int , ZCLAttributeDef ] = Basic .attributes .copy ()
15
15
16
16
attributes .update (
17
17
{
@@ -62,7 +62,7 @@ class SEBasic(CustomCluster, Basic):
62
62
class SEWindowCovering (CustomCluster , WindowCovering ):
63
63
"""Schneider Electric manufacturer specific Window Covering cluster."""
64
64
65
- attributes : dict [int , ZCLAttributeDef ] = WindowCovering .attributes .copy ()
65
+ attributes : Dict [int , ZCLAttributeDef ] = WindowCovering .attributes .copy ()
66
66
67
67
attributes .update (
68
68
{
You can’t perform that action at this time.
0 commit comments