From d8e4f90162b5e4719eff010a9523d74ab28d9815 Mon Sep 17 00:00:00 2001 From: Michael Wyraz Date: Thu, 6 Apr 2017 19:29:53 +0200 Subject: [PATCH] Fix lint --- homeassistant/components/sensor/min_max.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/min_max.py b/homeassistant/components/sensor/min_max.py index 80c2f4682c9..2fa00fc1810 100644 --- a/homeassistant/components/sensor/min_max.py +++ b/homeassistant/components/sensor/min_max.py @@ -104,7 +104,8 @@ def calc_mean(sensor_values, round_digits): class MinMaxSensor(Entity): """Representation of a min/max sensor.""" - def __init__(self, hass, entity_ids, name, sensor_type, round_digits, icon): + def __init__(self, hass, entity_ids, name, sensor_type, round_digits, + icon): """Initialize the min/max sensor.""" self._hass = hass self._entity_ids = entity_ids