Client.__init__() missing 1 required keyword-only argument: ‘intents’

You could use the default Intents unless you have a particular one to specify

client = discord.Client(intents=discord.Intents.default())

See Intents for more details

Leave a Comment