Skip to content

Commit

Permalink
Update cover.py
Browse files Browse the repository at this point in the history
Remove space at the end of ln 110-120
  • Loading branch information
adlertag1 authored and rospogrigio committed Jan 5, 2025
1 parent d3f959f commit 2b1f76b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/airbnk_mqtt/cover.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def is_closed(self):
"""Return if the cover is closed or not."""
return None

async def async_open_cover(self, **kwargs):
async def async_open_cover(self, **kwargs):
"""Open the cover."""
if self._device.curr_state == LOCK_STATE_OPERATING:
_LOGGER.warning("Operation already in progress: please wait")
Expand All @@ -117,7 +117,7 @@ async def async_open_cover(self, **kwargs):
_LOGGER.debug("Launching command to open")
await self._device.operateLock(1)

async def async_close_cover(self, **kwargs):
async def async_close_cover(self, **kwargs):
"""Close cover."""
if self._device.curr_state == LOCK_STATE_OPERATING:
_LOGGER.warning("Operation already in progress: please wait")
Expand Down

0 comments on commit 2b1f76b

Please sign in to comment.