From d4fbc3a087df53fa64f78c5ac43a2bda8338aac8 Mon Sep 17 00:00:00 2001 From: mvn23 Date: Wed, 10 Oct 2018 18:25:24 +0200 Subject: [PATCH] Order imports. --- homeassistant/components/opentherm_gw.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/opentherm_gw.py b/homeassistant/components/opentherm_gw.py index cb588305a46..8215f41011b 100644 --- a/homeassistant/components/opentherm_gw.py +++ b/homeassistant/components/opentherm_gw.py @@ -8,11 +8,12 @@ import logging import voluptuous as vol -from homeassistant.helpers.discovery import async_load_platform -from homeassistant.helpers.dispatcher import async_dispatcher_send from homeassistant.const import (CONF_DEVICE, CONF_MONITORED_VARIABLES, CONF_NAME, PRECISION_HALVES, PRECISION_TENTHS, PRECISION_WHOLE) +from homeassistant.helpers.discovery import async_load_platform +from homeassistant.helpers.dispatcher import async_dispatcher_send + import homeassistant.helpers.config_validation as cv DOMAIN = 'opentherm_gw'