前提・実現したいこと
なし
発生している問題・エラーメッセージ
Ignoring exception in command None: discord.ext.commands.errors.CommandNotFound: Command "よし" is not found
該当のソースコード
python
1from discord.ext import commands 2 3bot = commands.Bot(command_prefix='') 4 5 6@bot.command() 7async def test(ctx, *, arg): 8 await ctx.send(arg) 9 10 11@bot.command() 12async def add(ctx, a: int, b: int): 13 await ctx.send(a+b) 14 15@bot.event 16async def on_ready(): 17 print('bot ready.') 18 19 20 21bot.run("トークン") 22
試したこと
なし
補足情報(FW/ツールのバージョンなど)
discord.py,pythonすべて最新です
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/04/01 04:30