Update ruff to v0.0.260 (#90566)

This commit is contained in:
Franck Nijhof 2023-03-31 11:43:28 +02:00 committed by GitHub
parent b3887a633d
commit b9f0701336
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -172,7 +172,7 @@ class MySensorsLightRGB(MySensorsLight):
new_rgb: tuple[int, int, int] | None = kwargs.get(ATTR_RGB_COLOR)
if new_rgb is None:
return
hex_color = "%02x%02x%02x" % new_rgb
hex_color = "{:02x}{:02x}{:02x}".format(*new_rgb)
self.gateway.set_child_value(
self.node_id, self.child_id, self.value_type, hex_color, ack=1
)
@ -219,7 +219,7 @@ class MySensorsLightRGBW(MySensorsLightRGB):
new_rgbw: tuple[int, int, int, int] | None = kwargs.get(ATTR_RGBW_COLOR)
if new_rgbw is None:
return
hex_color = "%02x%02x%02x%02x" % new_rgbw
hex_color = "{:02x}{:02x}{:02x}{:02x}".format(*new_rgbw)
self.gateway.set_child_value(
self.node_id, self.child_id, self.value_type, hex_color, ack=1
)