From cfd56d9ebc37aed7cdf8c650eeff8f9d6381aa7a Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 8 Mar 2020 21:14:50 -0500 Subject: [PATCH] fix unreachable code in youtube/all service --- app/sound.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/sound.py b/app/sound.py index 3b42a3f..1bfd351 100644 --- a/app/sound.py +++ b/app/sound.py @@ -147,7 +147,6 @@ def list(service): def all(service): if service == "youtube": audios = YouTubeAudio.query.all() - return jsonify([audio.toJSON(True) for audio in audios]) return Response( jsonify([audio.toJSON(True) for audio in audios]), status=200,