From 56184daf59bfb82f0c590fdde1eb78e950ca3486 Mon Sep 17 00:00:00 2001 From: jamespcole Date: Tue, 7 Apr 2015 18:01:23 +1000 Subject: [PATCH] Fixed linting warnings --- homeassistant/components/history.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/history.py b/homeassistant/components/history.py index ddce81b3476..a288d5471d9 100644 --- a/homeassistant/components/history.py +++ b/homeassistant/components/history.py @@ -100,6 +100,7 @@ def get_state(point_in_time, entity_id, run=None): return states[0] if states else None +# pylint: disable=unused-argument def setup(hass, config): """ Setup history hooks. """ hass.http.register_path( @@ -115,6 +116,7 @@ def setup(hass, config): return True +# pylint: disable=unused-argument # pylint: disable=invalid-name def _api_last_5_states(handler, path_match, data): """ Return the last 5 states for an entity id as JSON. """