diff --git a/homeassistant/components/garage_door/rpi_gpio.py b/homeassistant/components/garage_door/rpi_gpio.py index 536e3177dc4..55ade8c9fc0 100644 --- a/homeassistant/components/garage_door/rpi_gpio.py +++ b/homeassistant/components/garage_door/rpi_gpio.py @@ -72,7 +72,7 @@ class RPiGPIOGarageDoor(GarageDoorDevice): def update(self): """Update the state of the garage door.""" - self._state = rpi_gpio.read_input(self._state_pin) is True + self._state = rpi_gpio.read_input(self._state_pin) @property def is_closed(self):