DingoLingo
DingoLingo copied to clipboard
TypeError: Client.start() got an unexpected keyword argument 'bot'
Just made a clone of this repository. Only addition I've made was a dotenv for my keys. I was trying to build my own bot and stumbled onto this. Where is the instantiation of bot as: bot = discord.Client() doesn't bot.run need an instantiation of the discord.client?
Here is the error I am getting on run.py:
Traceback (most recent call last):
File "C:\Users\klucz\Desktop\Python\DMB\run.py", line 85, in
This problem occurred because this code is not compatible with pycord 2.0 and the version in requirements.txt isn't locked.
Either install older version of pycord (pip install "py-cord<2.0.0"
) or try using my fork.
Thanks, that works!!!