diff --git a/.coveragerc b/.coveragerc index 4462b99ffcc..1280df1e654 100644 --- a/.coveragerc +++ b/.coveragerc @@ -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 diff --git a/homeassistant/components/shelly/__init__.py b/homeassistant/components/shelly/__init__.py index 39fc34d6d56..83d5d7b9f3a 100644 --- a/homeassistant/components/shelly/__init__.py +++ b/homeassistant/components/shelly/__init__.py @@ -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__) diff --git a/homeassistant/components/shelly/manifest.json b/homeassistant/components/shelly/manifest.json index 010ecf16a56..357f2c10fda 100644 --- a/homeassistant/components/shelly/manifest.json +++ b/homeassistant/components/shelly/manifest.json @@ -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"]