From 9984a638ba0f997896dc0b20ef05f21c816071f3 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 20 May 2017 00:19:48 +0200 Subject: [PATCH] fix lint --- hassio/api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/api/__init__.py b/hassio/api/__init__.py index 4ba2c1dae..73527d010 100644 --- a/hassio/api/__init__.py +++ b/hassio/api/__init__.py @@ -100,7 +100,7 @@ class RestAPI(object): def register_panel(self): """Register panel for homeassistant.""" panel = Path(__file__).parents[1].joinpath('panel/hassio-main.html') - + def get_panel(request): """Return file response with panel.""" return web.FileResponse(panel)