mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
🐛 Fix ding adapter exception
This commit is contained in:
parent
da62e012c2
commit
3638da7f2d
@ -10,7 +10,7 @@ class DingAdapterException(AdapterException):
|
||||
"""
|
||||
|
||||
def __init__(self) -> None:
|
||||
super.__init__("DING")
|
||||
super().__init__("DING")
|
||||
|
||||
|
||||
class ApiError(DingAdapterException):
|
||||
@ -22,6 +22,7 @@ class ApiError(DingAdapterException):
|
||||
"""
|
||||
|
||||
def __init__(self, errcode: int, errmsg: str):
|
||||
super().__init__()
|
||||
self.errcode = errcode
|
||||
self.errmsg = errmsg
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user