discord.py library tries to do asyncio.get_event_loop() if loop None else loop,
so asyncio doesn't like it and says: raise RuntimeError('There is no current event loop in thread %r.'
Error:
RuntimeError: There is no current event loop in thread 'Thread-1 (start_progress)'.
Solution for now, is run everything on different version of python (3.10 for example)
discord.py library tries to do
asyncio.get_event_loop() if loop None else loop,so asyncio doesn't like it and says:
raise RuntimeError('There is no current event loop in thread %r.'Error:
RuntimeError: There is no current event loop in thread 'Thread-1 (start_progress)'.Solution for now, is run everything on different version of python (3.10 for example)