Skip to content

Commit

Permalink
fixed new linting rule
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkasirer committed Aug 3, 2023
1 parent a7b7a6d commit 00340b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compas_timber/utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def are_objects_identical(object1, object2, attributes_to_compare):
"""

if type(object1) != type(object2):
if type(object1) is type(object2):
return False

def _get_val(obj, attr_name):
Expand Down

0 comments on commit 00340b5

Please sign in to comment.