@@ -130,7 +130,7 @@ def _supports_color_mode(self) -> bool:
130
130
"""Return whether the client supports the new color mode system natively."""
131
131
return self ._api_version >= APIVersion (1 , 6 )
132
132
133
- @property # type: ignore[misc]
133
+ @property
134
134
@esphome_state_property
135
135
def is_on (self ) -> bool | None :
136
136
"""Return true if the light is on."""
@@ -260,13 +260,13 @@ async def async_turn_off(self, **kwargs: Any) -> None:
260
260
data ["transition_length" ] = kwargs [ATTR_TRANSITION ]
261
261
await self ._client .light_command (** data )
262
262
263
- @property # type: ignore[misc]
263
+ @property
264
264
@esphome_state_property
265
265
def brightness (self ) -> int | None :
266
266
"""Return the brightness of this light between 0..255."""
267
267
return round (self ._state .brightness * 255 )
268
268
269
- @property # type: ignore[misc]
269
+ @property
270
270
@esphome_state_property
271
271
def color_mode (self ) -> str | None :
272
272
"""Return the color mode of the light."""
@@ -277,7 +277,7 @@ def color_mode(self) -> str | None:
277
277
278
278
return _color_mode_to_ha (self ._state .color_mode )
279
279
280
- @property # type: ignore[misc]
280
+ @property
281
281
@esphome_state_property
282
282
def rgb_color (self ) -> tuple [int , int , int ] | None :
283
283
"""Return the rgb color value [int, int, int]."""
@@ -294,15 +294,15 @@ def rgb_color(self) -> tuple[int, int, int] | None:
294
294
round (self ._state .blue * self ._state .color_brightness * 255 ),
295
295
)
296
296
297
- @property # type: ignore[misc]
297
+ @property
298
298
@esphome_state_property
299
299
def rgbw_color (self ) -> tuple [int , int , int , int ] | None :
300
300
"""Return the rgbw color value [int, int, int, int]."""
301
301
white = round (self ._state .white * 255 )
302
302
rgb = cast ("tuple[int, int, int]" , self .rgb_color )
303
303
return (* rgb , white )
304
304
305
- @property # type: ignore[misc]
305
+ @property
306
306
@esphome_state_property
307
307
def rgbww_color (self ) -> tuple [int , int , int , int , int ] | None :
308
308
"""Return the rgbww color value [int, int, int, int, int]."""
@@ -330,13 +330,13 @@ def rgbww_color(self) -> tuple[int, int, int, int, int] | None:
330
330
round (self ._state .warm_white * 255 ),
331
331
)
332
332
333
- @property # type: ignore[misc]
333
+ @property
334
334
@esphome_state_property
335
335
def color_temp (self ) -> float | None : # type: ignore[override]
336
336
"""Return the CT color value in mireds."""
337
337
return self ._state .color_temperature
338
338
339
- @property # type: ignore[misc]
339
+ @property
340
340
@esphome_state_property
341
341
def effect (self ) -> str | None :
342
342
"""Return the current effect."""
0 commit comments