black format

This commit is contained in:
Andrej730
2024-04-16 11:54:14 +05:00
parent 1e41561fe8
commit 3b6f79cc75
@@ -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"}