Move imports to top for greeneye_monitor ()

pull/29432/head
springstan 2019-12-04 14:12:07 +01:00 committed by Pascal Vizeli
parent 88c1a630d8
commit 4a7004b791
1 changed files with 1 additions and 1 deletions
homeassistant/components/greeneye_monitor

View File

@ -1,6 +1,7 @@
"""Support for monitoring a GreenEye Monitor energy monitor."""
import logging
from greeneye import Monitors
import voluptuous as vol
from homeassistant.const import (
@ -110,7 +111,6 @@ CONFIG_SCHEMA = vol.Schema({DOMAIN: COMPONENT_SCHEMA}, extra=vol.ALLOW_EXTRA)
async def async_setup(hass, config):
"""Set up the GreenEye Monitor component."""
from greeneye import Monitors
monitors = Monitors()
hass.data[DATA_GREENEYE_MONITOR] = monitors