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
* 'TypeError' in the line 135
data elements are encoded bytes
need to use
result_set = [res.split(b',') for res in data]
instead of
result_set = [res.split(',') for res in data]
* fix type error
* decode byte response to str before splitting
0 commit comments