Проблема с кнопками в discord.py, код:
import discord
from discord.ext import commands
from discord.ui import Button
Client = commands.Bot(command_prefix = "<", intents = discord.Intents.all())
@Client.event
async def on_ready():
print('пенис')
@Client.command()
class MyView(discord.ui.view):
@discord.ui.button(label="хуй", style=discord.ButtonStyle.blurple)
async def кнопка(self, button, interaction, ctx):
await ctx.send("ебать ахуеть", view=MyView())
Client.run(токен)
Ошибка:
Traceback (most recent call last):
File "c:\Users\sunixzz\Desktop\bot.py", line 41, in <module>
class MyView(discord.ui.view):
TypeError: module() takes at most 2 arguments (3 given)
Как это пофиксить?