我一直在努力使它起作用。我正在尝试使用discord.py 创建这样的命令
browser_online = True
@client.command()
async def logout(ctx, *, browser_online):
browser_online = False
print(browser_online)
当我尝试使用它时,出现一个错误,提示browser_online is an argument needed
。
我尝试将其放入@client.command(browser_online)
我试图将其放在这样的函数中:async def logout(ctx, browser_online)
什么都没用,请帮助