前提・実現したいこと
Discord.pyのBAN、Kickコマンドのコードのエラーを解決したい
発生している問題・エラーメッセージ
__init__() missing 1 required positional argument: 'command_prefix' File "C:\Users\gx1285\Desktop\Bot\TEST\ban.kick.py", line 5, in <module> client = commands.Bot(commands_prefix = '=')
該当のソースコード
Python
1import discord 2import random 3from discord.ext import commands 4 5client = commands.Bot(commands_prefix = '=') 6 7@client.event 8async def on_ready(): 9 print('Bot is ready.') 10 11@client.event 12async def kick(ctk, menber : discord.Member, *, reason=None): 13 await menber.kick(reason=reason) 14 15@client.event 16async def ban(ctk, menber : discord.Member, *, reason=None): 17 await menber.ban(reason=reason) 18 19client.run('TOKEN')
試したこと
prefixの変更
補足情報(FW/ツールのバージョンなど)
Discord.py 1.7.3
Python3.8.6
Visual Stadio code
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/27 01:21