Interim fix (#61435)

This commit is contained in:
Simone Chemelli 2021-12-10 16:40:31 +01:00 committed by Franck Nijhof
parent d20496a1bc
commit 23cb75fe20
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -68,12 +68,13 @@ from .utils import (
BLOCK_PLATFORMS: Final = [ BLOCK_PLATFORMS: Final = [
"binary_sensor", "binary_sensor",
"button", "button",
"climate",
"cover", "cover",
"light", "light",
"sensor", "sensor",
"switch", "switch",
] ]
BLOCK_SLEEPING_PLATFORMS: Final = ["binary_sensor", "climate", "sensor"] BLOCK_SLEEPING_PLATFORMS: Final = ["binary_sensor", "sensor"]
RPC_PLATFORMS: Final = ["binary_sensor", "button", "light", "sensor", "switch"] RPC_PLATFORMS: Final = ["binary_sensor", "button", "light", "sensor", "switch"]
_LOGGER: Final = logging.getLogger(__name__) _LOGGER: Final = logging.getLogger(__name__)