From 1cb4be69e63604fc9a9bb31222bfb2ea7a6f6d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=93=E3=81=86=E3=81=8B=E3=82=89?= Date: Wed, 20 Oct 2021 11:58:20 +0900 Subject: [PATCH] Fix NotImplementedError --- librespot/structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librespot/structure.py b/librespot/structure.py index 5d9c670..f74da6b 100644 --- a/librespot/structure.py +++ b/librespot/structure.py @@ -64,7 +64,7 @@ class MessageListener: class NoopAudioDecrypt(AudioDecrypt): def decrypt_chunk(self, chunk_index: int, buffer: bytes): - raise NotImplementedError + pass def decrypt_time_ms(self): return 0