Skip to content
Snippets Groups Projects
Commit f05eae65 authored by dnns01's avatar dnns01
Browse files

Make title the first parameter for adding appointments

parent 2c2cb0d9
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ class Appointments(commands.GroupCog, name="appointments", description="Handle A
title="Titel des Termins (so wie er dann evtl. auch im Kalender steht).",
description="Detailliertere Beschreibung, was gemacht werden soll.",
recurring="In welchem Intervall (in Tagen) soll der Termin wiederholt werden?")
async def cmd_add_appointment(self, interaction: Interaction, date: str, time: str, reminder: int, title: str,
async def cmd_add_appointment(self, interaction: Interaction, title: str, date: str, time: str, reminder: int,
description: str = "", recurring: int = 0) -> None:
""" Add an appointment to a channel """
channel = interaction.channel
......
......@@ -62,7 +62,7 @@ class Boty(commands.Bot):
return "%d.%m.%Y %H:%M"
bot = Boty(command_prefix='!', help_command=None, activity=Game(ACTIVITY), owner_id=OWNER, intents=intents,
bot = Boty(command_prefix=')', help_command=None, activity=Game(ACTIVITY), owner_id=OWNER, intents=intents,
initial_extensions=extensions)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment