🐛 Fix ding adapter exception

This commit is contained in:
Artin 2020-12-03 12:22:39 +08:00
parent da62e012c2
commit 3638da7f2d

View File

@ -10,7 +10,7 @@ class DingAdapterException(AdapterException):
""" """
def __init__(self) -> None: def __init__(self) -> None:
super.__init__("DING") super().__init__("DING")
class ApiError(DingAdapterException): class ApiError(DingAdapterException):
@ -22,6 +22,7 @@ class ApiError(DingAdapterException):
""" """
def __init__(self, errcode: int, errmsg: str): def __init__(self, errcode: int, errmsg: str):
super().__init__()
self.errcode = errcode self.errcode = errcode
self.errmsg = errmsg self.errmsg = errmsg