Added on_error update event ABC

This commit is contained in:
Cora Cordes 2021-11-20 16:38:46 +01:00
parent a56bdf39f7
commit c0d38817d4

View File

@ -5,3 +5,6 @@ class OnErrorABC(ABC):
@abstractmethod
def __init__(self): pass
@abstractmethod
async def on_error(self, event: str, *args, **kwargs): pass