diff --git a/homeassistant/components/etherscan/sensor.py b/homeassistant/components/etherscan/sensor.py index 9cabb2762b0..1c14ce578c1 100644 --- a/homeassistant/components/etherscan/sensor.py +++ b/homeassistant/components/etherscan/sensor.py @@ -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)