From dd35551047c1f634092e5ff390660b539cce1f6c Mon Sep 17 00:00:00 2001 From: Joseph Hughes Date: Sat, 16 Jan 2016 12:47:08 -0700 Subject: [PATCH] fix order of inhertiance --- homeassistant/components/binary_sensor/nest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/binary_sensor/nest.py b/homeassistant/components/binary_sensor/nest.py index e1414de5648..1150e9cc682 100644 --- a/homeassistant/components/binary_sensor/nest.py +++ b/homeassistant/components/binary_sensor/nest.py @@ -46,7 +46,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None): ) -class NestBinarySensor(NestSensor, BinarySensorDevice): +class NestBinarySensor(BinarySensorDevice, NestSensor): """ Represents a Nst Binary sensor. """ @property