From 91a945f4c73d4c539e14c73baec0c153eb3bd61d Mon Sep 17 00:00:00 2001 From: Philip Lundrigan Date: Mon, 14 Dec 2015 15:01:38 -0700 Subject: [PATCH] Slight style change --- homeassistant/components/automation/numeric_state.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/automation/numeric_state.py b/homeassistant/components/automation/numeric_state.py index 93fedcc8e3b..40249372b43 100644 --- a/homeassistant/components/automation/numeric_state.py +++ b/homeassistant/components/automation/numeric_state.py @@ -85,8 +85,7 @@ def if_action(hass, config): def if_numeric_state(): """ Test numeric state condition. """ state = hass.states.get(entity_id) - return state is not None and _in_range(state, above, below, - renderer) + return state is not None and _in_range(state, above, below, renderer) return if_numeric_state