1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-21 01:20:11 -07:00

Merge pull request #123 from pifou25/FixApiError9003

Fix api error9003
This commit is contained in:
Adrian Sampson 2020-10-04 16:58:21 -04:00 committed by GitHub
commit d7440be7a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -174,6 +174,7 @@ API_ERRORS = {
"0106": NotConnectedError, "0106": NotConnectedError,
"0100": FailedRequestError, "0100": FailedRequestError,
9000: InvalidRequestError, # Surprisingly, an integer (not a string). 9000: InvalidRequestError, # Surprisingly, an integer (not a string).
9003: NotLoggedInError, # Session Creation FailureError
} }