Some shelly fixes (#39798)

pull/39803/head
Paulus Schoutsen 2020-09-08 15:12:20 +02:00 committed by GitHub
parent 973524a4e6
commit 1e2741ff1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -757,7 +757,6 @@ omit =
homeassistant/components/shelly/binary_sensor.py
homeassistant/components/shelly/cover.py
homeassistant/components/shelly/entity.py
homeassistant/components/shelly/cover.py
homeassistant/components/shelly/light.py
homeassistant/components/shelly/sensor.py
homeassistant/components/shelly/switch.py

View File

@ -20,7 +20,7 @@ from homeassistant.helpers import aiohttp_client, device_registry, update_coordi
from .const import DOMAIN
PLATFORMS = ["binary_sensor", "light", "sensor", "switch", "cover"]
PLATFORMS = ["binary_sensor", "cover", "light", "sensor", "switch"]
_LOGGER = logging.getLogger(__name__)

View File

@ -2,7 +2,7 @@
"domain": "shelly",
"name": "Shelly",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/shelly2",
"documentation": "https://www.home-assistant.io/integrations/shelly",
"requirements": ["aioshelly==0.3.0"],
"zeroconf": ["_http._tcp.local."],
"codeowners": ["@balloob", "@bieniu"]