diff --git a/homeassistant/components/motion_blinds/cover.py b/homeassistant/components/motion_blinds/cover.py index c96dff93e67..16e5255240c 100644 --- a/homeassistant/components/motion_blinds/cover.py +++ b/homeassistant/components/motion_blinds/cover.py @@ -171,6 +171,8 @@ class MotionPositionDevice(CoordinatorEntity, CoverEntity): @property def is_closed(self): """Return if the cover is closed or not.""" + if self._blind.position is None: + return None return self._blind.position == 100 async def async_added_to_hass(self):