diff --git a/homeassistant/components/somfy/cover.py b/homeassistant/components/somfy/cover.py index b9edcb39d442b8..c577ecdc48442d 100644 --- a/homeassistant/components/somfy/cover.py +++ b/homeassistant/components/somfy/cover.py @@ -2,7 +2,6 @@ from pymfy.api.devices.blind import Blind from pymfy.api.devices.category import Category -import requests from homeassistant.components.cover import ( ATTR_POSITION, @@ -69,8 +68,6 @@ def close_cover(self, **kwargs): # Blocks until the close command is sent self.cover.close() self._closed = True - except requests.exceptions.HTTPError: - raise finally: self._is_closing = None self.schedule_update_ha_state() @@ -83,8 +80,6 @@ def open_cover(self, **kwargs): # Blocks until the open command is sent self.cover.open() self._closed = False - except requests.exceptions.HTTPError: - raise finally: self._is_opening = None self.schedule_update_ha_state()