From 349e4a5ac22196a51f65e14ec2ee72cd21b76836 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 3 Nov 2020 09:49:34 +0100 Subject: [PATCH] Fix shelly import (#42783) --- homeassistant/components/shelly/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/shelly/config_flow.py b/homeassistant/components/shelly/config_flow.py index 6f79475c0bf..88e01f04bc5 100644 --- a/homeassistant/components/shelly/config_flow.py +++ b/homeassistant/components/shelly/config_flow.py @@ -17,7 +17,7 @@ from homeassistant.const import ( ) from homeassistant.helpers import aiohttp_client -from .__init__ import get_coap_context +from . import get_coap_context from .const import DOMAIN # pylint:disable=unused-import _LOGGER = logging.getLogger(__name__)