我正在尝试创建一个 discord.py 经济体,这是代码
async def get_bank_data():
with open(bandata, "r") as f:
users = json.load(f)
return users
然而它返回“discord.ext.commands.errors.CommandInvokeError:命令引发异常:TypeError:open()需要1个位置参数,但给出了2个”,有什么办法解决吗?
答案 0 :(得分:0)
简单命令的示例可以解决您的问题:
@discord.ext.commands.command()
async def ping(ctx: discord.ext.commands.Context):
await ctx.send('pong')