You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Asyncio gives a DeprecationWarning because of line 535 of connection.py:
loop=asyncio.get_event_loop()
It says there's no current event loop. From my little research it's expected that this line will throw an error in python 3.11 when called without a running loop in the current thread, according to this stackoverflow answer.