From 5860c3fe50f784ffcb141bfd84dbd8377148b812 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 18 Sep 2024 18:44:29 +0500 Subject: [PATCH] black . --- src/bonsai/bonsai/bim/module/geometry/prop.py | 4 +++- src/ifcopenshell-python/test/bootstrap.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bonsai/bonsai/bim/module/geometry/prop.py b/src/bonsai/bonsai/bim/module/geometry/prop.py index a53949f4fb..0f2168579c 100644 --- a/src/bonsai/bonsai/bim/module/geometry/prop.py +++ b/src/bonsai/bonsai/bim/module/geometry/prop.py @@ -159,7 +159,9 @@ class BIMGeometryProperties(PropertyGroup): should_force_triangulation: BoolProperty(name="Force Triangulation", default=False) is_changing_mode: BoolProperty(name="Is Changing Mode", default=False) mode: EnumProperty(items=get_mode, name="IFC Interaction Mode", update=update_mode) - representation_obj: PointerProperty(name="Representation Object", type=bpy.types.Object, update=update_representation_obj) + representation_obj: PointerProperty( + name="Representation Object", type=bpy.types.Object, update=update_representation_obj + ) item_objs: CollectionProperty(name="Item Objects", type=RepresentationItemObject) def is_object_valid_for_representation_copy(self, obj: bpy.types.Object) -> bool: diff --git a/src/ifcopenshell-python/test/bootstrap.py b/src/ifcopenshell-python/test/bootstrap.py index 54536121ae..9f0503d1fe 100644 --- a/src/ifcopenshell-python/test/bootstrap.py +++ b/src/ifcopenshell-python/test/bootstrap.py @@ -19,7 +19,7 @@ import os import sys -if os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) == sys.path[0]: +if os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) == sys.path[0]: # Don't import ifcopenshell from local directory, because it most likely # does not contain the built binary sys.path[0:1] = []