Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm making an 8ball command, but python won't let me add a number to the command. What I want to make:

@client.command()
async def 8ball(ctx, args):
    #code here

Error:

  File "main.py", line 631
    async def 8ball(ctx, args=None):
              ^
SyntaxError: invalid syntax

Can someone help me? Thanks in advance

question from:https://stackoverflow.com/questions/65875253/im-making-an-8ball-command-but-python-wont-let-me-add-a-number-to-the-command

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use Aliases. Aliases can be thought of as other names the command can be called through.

@client.command(aliases=['8ball'])
async def _8ball(ctx, args):
    #code here

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...