Some shelly fixes (#39798)

This commit is contained in:
Paulus Schoutsen 2020-09-08 15:12:20 +02:00
parent 7f801faed1
commit 2a68952334
3 changed files with 2 additions and 3 deletions

View File

@ -762,7 +762,6 @@ omit =
homeassistant/components/shelly/binary_sensor.py homeassistant/components/shelly/binary_sensor.py
homeassistant/components/shelly/cover.py homeassistant/components/shelly/cover.py
homeassistant/components/shelly/entity.py homeassistant/components/shelly/entity.py
homeassistant/components/shelly/cover.py
homeassistant/components/shelly/light.py homeassistant/components/shelly/light.py
homeassistant/components/shelly/sensor.py homeassistant/components/shelly/sensor.py
homeassistant/components/shelly/switch.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 from .const import DOMAIN
PLATFORMS = ["binary_sensor", "light", "sensor", "switch", "cover"] PLATFORMS = ["binary_sensor", "cover", "light", "sensor", "switch"]
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)

View File

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