From 57d51979a7169fbac27c945bae1344d845058436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren?= Date: Tue, 4 Jun 2019 16:45:51 +0200 Subject: [PATCH] Hopefully last fixes for flake8 --- homeassistant/components/avea/light.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/avea/light.py b/homeassistant/components/avea/light.py index 0096dc259dd..62b5582b80a 100644 --- a/homeassistant/components/avea/light.py +++ b/homeassistant/components/avea/light.py @@ -1,6 +1,9 @@ +"""Support for the Elgato Avea lights.""" import logging -from homeassistant.components.light import ATTR_BRIGHTNESS, ATTR_HS_COLOR, SUPPORT_BRIGHTNESS, SUPPORT_COLOR, Light +from homeassistant.components.light import ( + ATTR_BRIGHTNESS, ATTR_HS_COLOR, SUPPORT_BRIGHTNESS, + SUPPORT_COLOR, Light) import homeassistant.util.color as color_util @@ -10,7 +13,7 @@ SUPPORT_AVEA = (SUPPORT_BRIGHTNESS | SUPPORT_COLOR) def setup_platform(hass, config, add_devices, discovery_info=None): - """Setup the Avea platform.""" + """Set up the Avea platform.""" import avea nearbyBulbs = avea.discover_avea_bulbs()