Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion psa_car_controller/web/tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def diff_dashtable(data, data_previous, row_id_name="row_id"):
changes = []
for idx, row in df_diff.iterrows():
row.dropna(inplace=True)
for change in row.iteritems():
for change in row.items():
changes.append(
{
row_id_name: data[idx][row_id_name],
Expand Down