diff --git a/homeassistant/components/climate/eq3btsmart.py b/homeassistant/components/climate/eq3btsmart.py index c7c5973fb86..43a26c27ce1 100644 --- a/homeassistant/components/climate/eq3btsmart.py +++ b/homeassistant/components/climate/eq3btsmart.py @@ -184,7 +184,8 @@ class EQ3BTSmartThermostat(ClimateDevice): def update(self): """Update the data from the thermostat.""" - from bluepy.btle import BTLEException # pylint: disable=import-error + # pylint: disable=import-error,no-name-in-module + from bluepy.btle import BTLEException try: self._thermostat.update() except BTLEException as ex: