Move imports to top for sense (#29258)
This commit is contained in:
parent
2bdf7fc8f5
commit
c4c8a1ba2d
3 changed files with 9 additions and 8 deletions
|
@ -1,7 +1,12 @@
|
|||
"""Support for monitoring a Sense energy sensor."""
|
||||
import logging
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
from sense_energy import (
|
||||
ASyncSenseable,
|
||||
SenseAPITimeoutException,
|
||||
SenseAuthenticationException,
|
||||
)
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD, CONF_TIMEOUT
|
||||
|
@ -36,11 +41,6 @@ CONFIG_SCHEMA = vol.Schema(
|
|||
|
||||
async def async_setup(hass, config):
|
||||
"""Set up the Sense sensor."""
|
||||
from sense_energy import (
|
||||
ASyncSenseable,
|
||||
SenseAuthenticationException,
|
||||
SenseAPITimeoutException,
|
||||
)
|
||||
|
||||
username = config[DOMAIN][CONF_EMAIL]
|
||||
password = config[DOMAIN][CONF_PASSWORD]
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
import logging
|
||||
|
||||
from homeassistant.components.binary_sensor import BinarySensorDevice
|
||||
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
||||
from homeassistant.core import callback
|
||||
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
||||
|
||||
from . import SENSE_DATA, SENSE_DEVICE_UPDATE
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
from sense_energy import SenseAPITimeoutException
|
||||
|
||||
from homeassistant.const import ENERGY_KILO_WATT_HOUR, POWER_WATT
|
||||
from homeassistant.helpers.entity import Entity
|
||||
from homeassistant.util import Throttle
|
||||
|
@ -114,7 +116,6 @@ class Sense(Entity):
|
|||
|
||||
async def async_update(self):
|
||||
"""Get the latest data, update state."""
|
||||
from sense_energy import SenseAPITimeoutException
|
||||
|
||||
try:
|
||||
await self.update_sensor()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue