From 8431fd822f746985b7347b367aa4f0c61bf25925 Mon Sep 17 00:00:00 2001 From: jamespcole Date: Tue, 19 May 2015 00:08:02 +1000 Subject: [PATCH] Fixed flake8 blank line error --- homeassistant/components/http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/http.py b/homeassistant/components/http.py index 47609c748be..2412ff5875f 100644 --- a/homeassistant/components/http.py +++ b/homeassistant/components/http.py @@ -154,6 +154,7 @@ def setup(hass, config=None): return True + # pylint: disable=too-many-instance-attributes class HomeAssistantHTTPServer(ThreadingMixIn, HTTPServer): """ Handle HTTP requests in a threaded fashion. """