From d0cebe911c1b13143ee041aec179902c50d82675 Mon Sep 17 00:00:00 2001 From: Raman Gupta <7243222+raman325@users.noreply.github.com> Date: Sun, 15 Aug 2021 16:06:05 -0400 Subject: [PATCH] Add siren, number, and weather to base platform list (#54665) --- homeassistant/setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homeassistant/setup.py b/homeassistant/setup.py index 07bbaa22954..9575a4331b8 100644 --- a/homeassistant/setup.py +++ b/homeassistant/setup.py @@ -39,14 +39,17 @@ BASE_PLATFORMS = { "lock", "media_player", "notify", + "number", "remote", "scene", "select", "sensor", + "siren", "switch", "tts", "vacuum", "water_heater", + "weather", } DATA_SETUP_DONE = "setup_done"