From afd015efa24306662654b94f240c6644bba88a97 Mon Sep 17 00:00:00 2001 From: Snek <97262062+sn3kdev@users.noreply.github.com> Date: Wed, 27 Nov 2024 23:00:39 +0200 Subject: [PATCH] Add blockquotes to text decorations --- aiogram/utils/text_decorations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiogram/utils/text_decorations.py b/aiogram/utils/text_decorations.py index 00686f7a..eec7916a 100644 --- a/aiogram/utils/text_decorations.py +++ b/aiogram/utils/text_decorations.py @@ -150,8 +150,8 @@ class TextDecoration(ABC): pass @abstractmethod - def blockquote(self, value: str) -> str: #pragma: no cover - return f"
{value}
" + def blockquote(self, value: str) -> str: # pragma: no cover + pass @abstractmethod def custom_emoji(self, value: str, custom_emoji_id: str) -> str: # pragma: no cover