Add cover platform to Tessie (#105422)
* Add cover platform * fix case * Remove virtual key issue * Remove redundant logic * Fix logic that I missed * Add missing types * Add missing type * Update entity * Make window name better * Fix test * Update docstrings and comments
This commit is contained in:
parent
1170e72913
commit
23fa86cc23
5 changed files with 233 additions and 0 deletions
|
@ -35,6 +35,11 @@ ERROR_TIMEOUT = ClientResponseError(
|
|||
ERROR_UNKNOWN = ClientResponseError(
|
||||
request_info=TEST_REQUEST_INFO, history=None, status=HTTPStatus.BAD_REQUEST
|
||||
)
|
||||
ERROR_VIRTUAL_KEY = ClientResponseError(
|
||||
request_info=TEST_REQUEST_INFO,
|
||||
history=None,
|
||||
status=HTTPStatus.INTERNAL_SERVER_ERROR,
|
||||
)
|
||||
ERROR_CONNECTION = ClientConnectionError()
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue