From 027203008d9ddf8a943637f2622311b8eea4e148 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 6 Aug 2026 19:11:25 +0500 Subject: [PATCH] black . --- src/ifcopenshell-python/ifcopenshell/entity_instance.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/ifcopenshell-python/ifcopenshell/entity_instance.py b/src/ifcopenshell-python/ifcopenshell/entity_instance.py index c3f7003f4d..8732b0edba 100644 --- a/src/ifcopenshell-python/ifcopenshell/entity_instance.py +++ b/src/ifcopenshell-python/ifcopenshell/entity_instance.py @@ -218,11 +218,7 @@ class entity_instance_mixin: if self.is_a(True) != other.is_a(True): return False - if ( - settings.compare_instances_by_value - or self.file_pointer() != other.file_pointer() - or not self.is_entity() - ): + if settings.compare_instances_by_value or self.file_pointer() != other.file_pointer() or not self.is_entity(): return self.get_info(recursive=True, include_identifier=False) == other.get_info( recursive=True, include_identifier=False )