-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit c89aeec Author: Valentin271 <valentin.d77@free.fr> Date: Sun Jan 8 17:24:13 2023 +0100 fixed authenticate user failed while requesting stream, fixes #23 commit 828e4b5 Author: Valentin271 <valentin.d77@free.fr> Date: Sun Jan 8 14:17:07 2023 +0100 added types
- Loading branch information
1 parent
2fb4fb1
commit 88a98dd
Showing
7 changed files
with
88 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/lib/exceptions/credentials_exception.py → ...exceptions/empty_credentials_exception.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .deezerkodi_exception import DeezerKodiException | ||
|
||
|
||
class CredentialsException(DeezerKodiException): | ||
class EmptyCredentialsException(DeezerKodiException): | ||
"""Exception thrown when user credentials are not present""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from .deezerkodi_exception import DeezerKodiException | ||
|
||
|
||
class LoadedCredentialsException(DeezerKodiException): | ||
"""Thrown when credentials loaded from file are faulty (i.e. empty)""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters