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
Fixing identation when checking last_list (comment was idented correctly, but code not).
Fixing the calculation of the time that card has been on a list, correcting last_action_datetime update value by putting it before if/continue statement.
Fixing identation when checking last_list (comment was idented correctly, but code not).
Fixing the calculation of the time that card has been on a list, correcting last_action_datetime update value by putting it before if/continue statement.
There is a typo in line: "if source_list_id not in stats_by_list or not destination_list["id"] not in stats_by_list:" in "get_stats_by_list" method.
The line should be chaged to: "if source_list_id not in stats_by_list or destination_list["id"] not in stats_by_list:"
There is no need to have NOT before "destination_list["id"]".
The text was updated successfully, but these errors were encountered: