Update list of integrations known to violate color mode rules (#111647)

This commit is contained in:
Erik Montnemery 2024-02-27 18:17:26 +01:00 committed by GitHub
parent e25b097376
commit 6bd7a74fab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1336,5 +1336,5 @@ class LightEntity(ToggleEntity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
"""Return if light color mode issues should be reported.""" """Return if light color mode issues should be reported."""
if not self.platform: if not self.platform:
return True return True
# philips_js and zha have known issues, we don't need users to open issues # philips_js, tuya and zha have known issues, we don't need users to open issues
return self.platform.platform_name not in {"philips_js", "zha"} return self.platform.platform_name not in {"philips_js", "tuya", "zha"}