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 2525class SwitchbotBulb (SwitchbotSequenceBaseLight ):
2626 """Representation of a Switchbot bulb."""
2727
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-
3328 @property
3429 def color_modes (self ) -> set [ColorMode ]:
3530 """Return the supported color modes."""
Original file line number Diff line number Diff line change 2222class SwitchbotCeilingLight (SwitchbotBaseLight ):
2323 """Representation of a Switchbot bulb."""
2424
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-
3025 @property
3126 def color_modes (self ) -> set [ColorMode ]:
3227 """Return the supported color modes."""
Original file line number Diff line number Diff line change 2222class SwitchbotLightStrip (SwitchbotSequenceBaseLight ):
2323 """Representation of a Switchbot light strip."""
2424
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-
3025 @property
3126 def color_modes (self ) -> set [ColorMode ]:
3227 """Return the supported color modes."""
You can’t perform that action at this time.
0 commit comments