From 901656443f21260e56731940876a02de9cabcd0d Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 26 Dec 2021 05:09:56 +0000 Subject: [PATCH] Remove methods with unnecessary super delegation. --- librespot/mercury.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/librespot/mercury.py b/librespot/mercury.py index e2e3a56..450b98f 100644 --- a/librespot/mercury.py +++ b/librespot/mercury.py @@ -261,8 +261,7 @@ class MercuryClient(Closeable, PacketsReceiver): self.code = response.status_code class PubSubException(MercuryException): - def __init__(self, response: MercuryClient.Response): - super().__init__(response) + pass class Response: uri: str