File tree Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 25
25
class SwitchbotBulb (SwitchbotSequenceBaseLight ):
26
26
"""Representation of a Switchbot bulb."""
27
27
28
- def __init__ (self , * args : Any , ** kwargs : Any ) -> None :
29
- """Switchbot bulb constructor."""
30
- super ().__init__ (* args , ** kwargs )
31
- self ._state : dict [str , Any ] = {}
32
-
33
28
@property
34
29
def color_modes (self ) -> set [ColorMode ]:
35
30
"""Return the supported color modes."""
Original file line number Diff line number Diff line change 22
22
class SwitchbotCeilingLight (SwitchbotBaseLight ):
23
23
"""Representation of a Switchbot bulb."""
24
24
25
- def __init__ (self , * args : Any , ** kwargs : Any ) -> None :
26
- """Switchbot bulb constructor."""
27
- super ().__init__ (* args , ** kwargs )
28
- self ._state : dict [str , Any ] = {}
29
-
30
25
@property
31
26
def color_modes (self ) -> set [ColorMode ]:
32
27
"""Return the supported color modes."""
Original file line number Diff line number Diff line change 22
22
class SwitchbotLightStrip (SwitchbotSequenceBaseLight ):
23
23
"""Representation of a Switchbot light strip."""
24
24
25
- def __init__ (self , * args : Any , ** kwargs : Any ) -> None :
26
- """Switchbot light strip constructor."""
27
- super ().__init__ (* args , ** kwargs )
28
- self ._state : dict [str , Any ] = {}
29
-
30
25
@property
31
26
def color_modes (self ) -> set [ColorMode ]:
32
27
"""Return the supported color modes."""
You can’t perform that action at this time.
0 commit comments