How do I force the user to label positional arguments with commands in Discord.py. For instance, I have the following function:
bot = commands.Bot('#')
@bot.command()
async def example_function(ctx, a: int, b: int, c: int):
await ctx.send((a+c)/b)
How do I force the user to label the arguments? i.e. invoke the command like this:
#example_function -a=7 -b=8 -c=5
The reason I ask is - I have several complex functions which need multiple variables to be passed for a Dicord Bot I created and it would be better and less error-prone if the user labels the arguments.