I followed your suggestion and added the view setup in the on_ready
method, like this:
@bot.event
async def on_ready():
print(f"Logged in as {bot.user.display_name}!")
await bot.tree.sync()
bot.add_view(CloseView())
bot.add_view(ClaimView())
However, I'm still encountering an error:
2025-03-13 19:38:00 ERROR discord.client Ignoring exception in on_ready
Traceback (most recent call last):
File "C:\Users\ryad\AppData\Local\Programs\Python\Python311\Lib\site-packages\discord\client.py", line 449, in _run_event
await coro(*args, **kwargs)
File "C:\Users\ryad\Documents\Clients\March 2025\mystichrome\main.py", line 264, in on_ready
bot.add_view(CloseView())
^^^^^^^^^^^
TypeError: CloseView.__init__() missing 2 required positional arguments
What should I do to resolve this issue?