From ead3785710228a0816a337706b715e641408e56c Mon Sep 17 00:00:00 2001 From: Pavel Kirilin <win10@list.ru> Date: Tue, 27 Oct 2020 00:22:32 +0400 Subject: [PATCH] Fixed pre-commit. Signed-off-by: Pavel Kirilin <win10@list.ru> --- src/actions/replies.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/actions/replies.py b/src/actions/replies.py index 873c819..4e3d028 100644 --- a/src/actions/replies.py +++ b/src/actions/replies.py @@ -33,7 +33,9 @@ async def welcome(event: events.ChatAction.Event): ) @mark_unread async def hello(event): - await event.respond(random.choice(["ЗдравÑтвуйте!", "Добрый день!", "ПриветÑтвую."])) + await event.respond( + random.choice(["ЗдравÑтвуйте!", "Добрый день!", "ПриветÑтвую."]) + ) @config.telegram_client.on( -- GitLab