mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
6 lines
151 B
Python
6 lines
151 B
Python
from spotdl.lyrics.exceptions import LyricsNotFoundError
|
|
|
|
def test_lyrics_not_found_subclass():
|
|
assert issubclass(LyricsNotFoundError, Exception)
|
|
|