From 95d52e9d3fa2dfc0758ed7cd5f404ca375e0b524 Mon Sep 17 00:00:00 2001 From: dj Date: Wed, 15 Mar 2023 21:12:04 +0300 Subject: [PATCH] -Update --- tgbot/utils/const_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgbot/utils/const_functions.py b/tgbot/utils/const_functions.py index 536b69c..49f7b5d 100644 --- a/tgbot/utils/const_functions.py +++ b/tgbot/utils/const_functions.py @@ -83,7 +83,7 @@ def ded(get_text: str) -> str: for text in split_text: while text.startswith(" "): - text = text[1:] + text = text[1:].strip() save_text.append(text) get_text = "\n".join(save_text)