From 7e4e23bdeaeaafb386006751e1fa22cf73e4510f Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Tue, 3 Dec 2024 21:47:16 +0100 Subject: [PATCH] update survey text --- survey.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/survey.py b/survey.py index 1031c61..7a19419 100644 --- a/survey.py +++ b/survey.py @@ -32,10 +32,10 @@ bot = discord.Bot(description=None) async def on_ready(): print("Bot ready on Version %s..." % discord.__version__) # build survey - po = discord.Poll(question="Wie habt ihr nächste Woche Zeit?", answers=[discord.PollAnswer(text="Montag", emoji="1\u20E3"), discord.PollAnswer(text="Dienstag", emoji="2\u20E3"), discord.PollAnswer(text="Mittwoch", emoji="3\u20E3"), discord.PollAnswer(text="Donnerstag", emoji="4\u20E3"), discord.PollAnswer(text="Freitag", emoji="5\u20E3"), discord.PollAnswer(text="Samstag", emoji="6\u20E3"), discord.PollAnswer(text="Sonntag", emoji="7\u20E3"), discord.PollAnswer(text="keine Zeit", emoji="❌")], duration=runtime, allow_multiselect=True) + po = discord.Poll(question="Habt ihr nächsten Dienstag Zeit?", answers=[discord.PollAnswer(text="Ja", emoji="✅"), discord.PollAnswer(text="keine Zeit", emoji="❌")], duration=runtime, allow_multiselect=False) # send message msg = await bot.get_channel(survey_channel).send(content="||%s||"% bot.get_guild(guild_id).get_role(mention_id).mention ,poll=po) - await msg.create_thread(name="Diskussion") + # await msg.create_thread(name="Diskussion") # close connection await bot.close()