Update async_telebot.py

This commit is contained in:
_run 2021-11-28 00:21:09 +05:00
parent a9b422783f
commit bfc0b8ecd5
1 changed files with 0 additions and 24 deletions

View File

@ -69,30 +69,6 @@ class ExceptionHandler:
return False
class SkipHandler:
"""
Class for skipping handlers.
Just return instance of this class
in middleware to skip handler.
Update will go to post_process,
but will skip execution of handler.
"""
def __init__(self) -> None:
pass
class CancelUpdate:
"""
Class for canceling updates.
Just return instance of this class
in middleware to skip update.
Update will skip handler and execution
of post_process in middlewares.
"""
def __init__(self) -> None:
pass
class AsyncTeleBot: