Skip to content

Commit

Permalink
Fix closed -> opening
Browse files Browse the repository at this point in the history
Fixed what I assume is a copy-paste error

Signed-off-by: Christian Pedersen <[email protected]>
  • Loading branch information
chripede authored Feb 15, 2024
1 parent dc996ee commit 2df67a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mqtt_discoverable/sensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def closing(self) -> None:

def opening(self) -> None:
"""Set cover state to opening"""
self._update_state(self._entity.state_closed)
self._update_state(self._entity.state_opening)

def stopped(self) -> None:
"""Set cover state to stopped"""
Expand Down

0 comments on commit 2df67a7

Please sign in to comment.