Adding Deezer Module and Deezer Tests

This commit is contained in:
Rafael Vargas
2022-07-10 16:08:22 -03:00
parent c826af229c
commit 863b079a01
11 changed files with 232 additions and 21 deletions

View File

@@ -49,6 +49,11 @@ class SpotifyError(VulkanError):
super().__init__(message, title, *args)
class DeezerError(VulkanError):
def __init__(self, message='', title='', *args: object) -> None:
super().__init__(message, title, *args)
class UnknownError(VulkanError):
def __init__(self, message='', title='', *args: object) -> None:
super().__init__(message, title, *args)