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
I recently added a column containing lists of ints to the participant table, and now get_participants fails:
-> 1378 df = df.applymap(lambda x: [i['entityName'] if 'entityName' in i else i for i in x] 1379 if isinstance(x, list) and np.all(pd.notnull(x)) else x)
... (long stack trace) ...
TypeError: argument of type 'int' is not iterable
The text was updated successfully, but these errors were encountered:
(Probably related to #32)
I recently added a column containing lists of ints to the participant table, and now
get_participants
fails:-> 1378 df = df.applymap(lambda x: [i['entityName'] if 'entityName' in i else i for i in x] 1379 if isinstance(x, list) and np.all(pd.notnull(x)) else x)
... (long stack trace) ...
TypeError: argument of type 'int' is not iterable
The text was updated successfully, but these errors were encountered: