Now account name is copyable

This commit is contained in:
2023-01-03 12:12:40 +03:00
parent f9d163361a
commit fdbed91512
2 changed files with 2 additions and 10 deletions

View File

@ -86,10 +86,3 @@ async def send_deleteable_message(
parse_mode="MarkdownV2",
reply_markup=markup,
)
def escape(text: str) -> str:
escaped_chars = "*_~|`[("
for char in escaped_chars:
text = text.replace(char, rf"\\{char}")
return text