Skip to content

Commit

Permalink
Merge 38772b8 into 86a4c8d
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrange1998 authored Apr 1, 2024
2 parents 86a4c8d + 38772b8 commit e59dcf1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ax/utils/common/equality.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ def object_attribute_dicts_find_unequal_fields(
and hasattr(other_val, "model")
and isinstance(one_val.model, type(other_val.model))
)

elif field == "_time_created":
equal = True
elif isinstance(one_val, list):
equal = isinstance(other_val, list) and same_elements(one_val, other_val)
elif isinstance(one_val, dict):
Expand Down

0 comments on commit e59dcf1

Please sign in to comment.