Inflearn Community Q&A
파이참 에서의 오류 입니다 discordbot 파일에서
Written on
·
3.7K
0
Traceback (most recent call last):
File "C:\Users\220725\Desktop\discord\bot.py", line 4, in <module>
app = commands.Bot(command_prefix='/')
TypeError: __init__() missing 1 required keyword-only argument: 'intents'
실행하면 오류가 발생
오류가 발생합니다
웹-크롤링pythonGUI
Answer 2
0
나
Questioner
from discord.ext import commands
intents =discord.Intents.all
token=()
app = commands.Bot(command_preffix intents=intents)
0






저도 지금 같은 오류로 찾고 있는데 혹시 어떻게 해결하셨는지 조언 좀 구할 수 있을까요?