Skip to content

Commit

Permalink
fix mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
bpaulin committed Dec 14, 2020
1 parent 411968e commit 55cdfb2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion custom_components/myhomeserver1/cover.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def cover_id(self):

@property
def should_poll(self) -> bool:
return True
return False

@property
def name(self):
Expand Down Expand Up @@ -87,6 +87,10 @@ def is_closing(self):
def is_opening(self):
return self._state == COVER_OPENING

@property
def is_closed(self):
return None

@property
def current_cover_position(self):
return None
Expand Down

0 comments on commit 55cdfb2

Please sign in to comment.