I'm trying to make a withdraw command in by economy bot, but python won't let me use "with" as the name. I think the reason why is that with is a built in python function. Can someone tell me how I can make "with" the command name in async def with(ctx, amount=None):
?
Code:
@client.command()
async def with(ctx, amount = None):
Error:
File "main.py", line 363
async def with(ctx, amount = None):
^
SyntaxError: invalid syntax
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…