Skip to content

Commit

Permalink
🚑 Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
OttoWinter committed Dec 17, 2018
1 parent 691900d commit 88374a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/fan/esphome.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

if TYPE_CHECKING:
# pylint: disable=unused-import
from aioesphomeapi import FanInfo, FanState
from aioesphomeapi import FanInfo, FanState # noqa

DEPENDENCIES = ['esphome']
_LOGGER = logging.getLogger(__name__)
Expand All @@ -21,7 +21,7 @@ async def async_setup_entry(hass: HomeAssistantType,
entry: ConfigEntry, async_add_entities) -> None:
"""Set up ESPHome fans based on a config entry."""
# pylint: disable=redefined-outer-name
from aioesphomeapi import FanInfo, FanState
from aioesphomeapi import FanInfo, FanState # noqa

await platform_async_setup_entry(
hass, entry, async_add_entities,
Expand Down

0 comments on commit 88374a6

Please sign in to comment.