Remove methods with unnecessary super delegation.

Signed-off-by: shubhendra <withshubh@gmail.com>
This commit is contained in:
shubhendra 2021-03-26 18:45:39 +05:30 committed by Lex Berezhny
parent 4725f510d8
commit 2a6d7fd80f

View file

@ -108,9 +108,6 @@ class Response:
class CodeMessageError(Exception):
def __init__(self, code, message):
super().__init__(code, message)
@property
def code(self):
return self.args[0]