From 7141a9992762a797b2e7077e69098f604eff62fa Mon Sep 17 00:00:00 2001 From: MakeMeASandwich Date: Sun, 18 Oct 2015 09:10:41 +0200 Subject: [PATCH] fix flake warning --- homeassistant/components/light/hyperion.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/light/hyperion.py b/homeassistant/components/light/hyperion.py index b11485ff8d5..ddd98661155 100644 --- a/homeassistant/components/light/hyperion.py +++ b/homeassistant/components/light/hyperion.py @@ -22,8 +22,8 @@ import json from homeassistant.const import CONF_HOST from homeassistant.components.light import (Light, ATTR_XY_COLOR, ATTR_BRIGHTNESS) -from homeassistant.util.color import color_RGB_to_xy, \ - color_xy_brightness_to_RGB +from homeassistant.util.color import (color_RGB_to_xy, + color_xy_brightness_to_RGB) _LOGGER = logging.getLogger(__name__) REQUIREMENTS = []