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
for ev in client.events():
assert isinstance(ev, str), 'ev is not a string' # Does not trigger
assert isinstance(ev, dict), 'ev is not a dict' # Does trigger
Is that as intended or am I right in assuming that this should actually be a dict?