From bfc0b8ecd540c8e9af118011be4087defa016808 Mon Sep 17 00:00:00 2001 From: _run Date: Sun, 28 Nov 2021 00:21:09 +0500 Subject: [PATCH] Update async_telebot.py --- telebot/async_telebot.py | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/telebot/async_telebot.py b/telebot/async_telebot.py index eb2ac44..7ee990f 100644 --- a/telebot/async_telebot.py +++ b/telebot/async_telebot.py @@ -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: