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
This happens because += has different behavior for lists as described in this SO post. The reason it updates status_data is beyond me. Apparently you can set a DataFrame column to a list pointer?
The text was updated successfully, but these errors were encountered:
on this line:
every element in the variable
status_data
gets updated, making the"status"
field for each row == len(df). Fix it with:This happens because
+=
has different behavior for lists as described in this SO post. The reason it updatesstatus_data
is beyond me. Apparently you can set a DataFrame column to a list pointer?The text was updated successfully, but these errors were encountered: