From 3b6f79cc75f6f956b1a5998313cb1f19d853793c Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 16 Apr 2024 11:54:14 +0500 Subject: [PATCH] black format --- src/blenderbim/blenderbim/bim/module/constraint/operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/constraint/operator.py b/src/blenderbim/blenderbim/bim/module/constraint/operator.py index 6ab81a4695..2e9b9313da 100644 --- a/src/blenderbim/blenderbim/bim/module/constraint/operator.py +++ b/src/blenderbim/blenderbim/bim/module/constraint/operator.py @@ -114,7 +114,7 @@ class EditObjective(bpy.types.Operator): ifcopenshell.api.run( "constraint.edit_objective", self.file, - **{"objective": self.file.by_id(props.active_constraint_id), "attributes": attributes} + **{"objective": self.file.by_id(props.active_constraint_id), "attributes": attributes}, ) bpy.ops.bim.load_objectives() return {"FINISHED"} @@ -191,7 +191,7 @@ class AssignConstraint(bpy.types.Operator): **{ "product": self.file.by_id(obj_id), "constraint": self.file.by_id(self.constraint), - } + }, ) return {"FINISHED"}