From bd2a7e93e382a02644f002924a092303f577a149 Mon Sep 17 00:00:00 2001 From: kostiak Date: Sat, 31 Dec 2022 16:06:32 +0000 Subject: [PATCH] fixing issue #202 --- discord-bot/bot/extensions/work.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord-bot/bot/extensions/work.py b/discord-bot/bot/extensions/work.py index f2d1eaec..822f4e34 100644 --- a/discord-bot/bot/extensions/work.py +++ b/discord-bot/bot/extensions/work.py @@ -374,7 +374,7 @@ def _rank_prompter_reply_embed(task: protocol_schema.RankPrompterRepliesTask) -> embed = ( hikari.Embed( title="Rank User Reply", - description="Rank the following tasks from best to worst. e.g. 1,2,5,3,4", + description="Rank the following user replies from best to worst. e.g. 1,2,5,3,4", timestamp=datetime.now().astimezone(), ) .set_image("https://images.unsplash.com/photo-1455390582262-044cdead277a?w=512") # TODO: update image @@ -391,7 +391,7 @@ def _rank_assistant_reply_embed(task: protocol_schema.RankAssistantRepliesTask) embed = ( hikari.Embed( title="Rank Assistant Reply", - description="Rank the following tasks from best to worst. e.g. 1,2,5,3,4", + description="Rank the following assistant replies from best to worst. e.g. 1,2,5,3,4", timestamp=datetime.now().astimezone(), ) .set_image("https://images.unsplash.com/photo-1455390582262-044cdead277a?w=512") # TODO: update image