Move imports to top for etherscan (#29426)

This commit is contained in:
springstan 2019-12-04 15:21:18 +01:00 committed by Franck Nijhof
parent af18c668d2
commit 0d1a389602

View file

@ -1,6 +1,7 @@
"""Support for Etherscan sensors."""
from datetime import timedelta
from pyetherscan import get_balance
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA
@ -75,7 +76,6 @@ class EtherscanSensor(Entity):
def update(self):
"""Get the latest state of the sensor."""
from pyetherscan import get_balance
if self._token_address:
self._state = get_balance(self._address, self._token_address)