Skip to content

Commit

Permalink
Improve type hints in blinksticklight lights (#75999)
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet committed Aug 2, 2022
1 parent fbe22d4 commit be4f959
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions homeassistant/components/blinksticklight/light.py
@@ -1,6 +1,8 @@
"""Support for Blinkstick lights."""
from __future__ import annotations

from typing import Any

from blinkstick import blinkstick
import voluptuous as vol

Expand Down Expand Up @@ -57,29 +59,31 @@ def __init__(self, stick, name):
self._stick = stick
self._attr_name = name

def update(self):
def update(self) -> None:
"""Read back the device state."""
rgb_color = self._stick.get_color()
hsv = color_util.color_RGB_to_hsv(*rgb_color)
self._attr_hs_color = hsv[:2]
self._attr_brightness = hsv[2]
self._attr_is_on = self.brightness > 0
self._attr_brightness = int(hsv[2])
self._attr_is_on = self.brightness is not None and self.brightness > 0

def turn_on(self, **kwargs):
def turn_on(self, **kwargs: Any) -> None:
"""Turn the device on."""
if ATTR_HS_COLOR in kwargs:
self._attr_hs_color = kwargs[ATTR_HS_COLOR]
if ATTR_BRIGHTNESS in kwargs:
self._attr_brightness = kwargs[ATTR_BRIGHTNESS]
else:
self._attr_brightness = 255
assert self.brightness is not None
self._attr_is_on = self.brightness > 0

assert self.hs_color
rgb_color = color_util.color_hsv_to_RGB(
self.hs_color[0], self.hs_color[1], self.brightness / 255 * 100
)
self._stick.set_color(red=rgb_color[0], green=rgb_color[1], blue=rgb_color[2])

def turn_off(self, **kwargs):
def turn_off(self, **kwargs: Any) -> None:
"""Turn the device off."""
self._stick.turn_off()

0 comments on commit be4f959

Please sign in to comment.