発生している問題・エラーメッセージ
Bot Commands Frameworkを試そうとしていたところ以下のようなエラーを吐いてしまった
Ignoring exception in command None: discord.ext.commands.errors.CommandNotFound: Command "test" is not found
該当のソースコード
import discord from discord.ext import commands token = '#トークン' bot = commands.Bot(command_prefix='/') @bot.event async def on_ready(): print('login') @bot.command async def test(ctx): ctx.send("test") bot.run(token)
試したこと
ネット上で同じような事例がないか探したが見当たらなかった
環境
Discord.py 1.3.3
visual studio code
回答2件
あなたの回答
tips
プレビュー