So I'm trying to make a share coins command, and I want to format it like this:
!share [amount of coins] [member]
This is my code:
@client.command()
async def share(ctx, amount = None, member:discord.Member):
But it gives me this error:
File "main.py", line 379
async def share(ctx, amount = None, member:discord.Member):
^
SyntaxError: non-default argument follows default argument
How do I fix this? Thanks in advance
Nevermind I figured it out. I just had to remove the = None.
question from:
https://stackoverflow.com/questions/65863977/im-trying-to-make-a-share-command-for-my-economy-bot-but-it-wont-let-me-forma 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…