From f37038921f78c9e67425849de9d5db546d12d61c Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Fri, 7 Oct 2016 11:48:38 -0700 Subject: [PATCH] Fix E501 line too long error --- homeassistant/components/switch/anel_pwrctrl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/switch/anel_pwrctrl.py b/homeassistant/components/switch/anel_pwrctrl.py index 93e34a61baa..024fefe2bc5 100644 --- a/homeassistant/components/switch/anel_pwrctrl.py +++ b/homeassistant/components/switch/anel_pwrctrl.py @@ -17,7 +17,8 @@ from homeassistant.util import Throttle REQUIREMENTS = ['https://github.com/mweinelt/anel-pwrctrl/archive/' - 'ed26e8830e28a2bfa4260a9002db23ce3e7e63d7.zip#anel_pwrctrl==0.0.1'] + 'ed26e8830e28a2bfa4260a9002db23ce3e7e63d7.zip' + '#anel_pwrctrl==0.0.1'] CONF_PORT_RECV = "port_recv" CONF_PORT_SEND = "port_send"