mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2026-02-13 04:49:27 +00:00
Write tests for YouTube metadata
This commit is contained in:
@@ -2,19 +2,19 @@ class EncoderNotFoundError(Exception):
|
||||
__module__ = Exception.__module__
|
||||
|
||||
def __init__(self, message=None):
|
||||
super(EncoderNotFoundError, self).__init__(message)
|
||||
super().__init__(message)
|
||||
|
||||
|
||||
class FFmpegNotFoundError(EncoderNotFoundError):
|
||||
__module__ = Exception.__module__
|
||||
|
||||
def __init__(self, message=None):
|
||||
super(FFmpegNotFoundError, self).__init__(message)
|
||||
super().__init__(message)
|
||||
|
||||
|
||||
class AvconvNotFoundError(EncoderNotFoundError):
|
||||
__module__ = Exception.__module__
|
||||
|
||||
def __init__(self, message=None):
|
||||
super(AvconvNotFoundError, self).__init__(message)
|
||||
super().__init__(message)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user