mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 02:02:22 +00:00
Fix bim.unassign_structural_load_case (redundant argument)
This commit is contained in:
@@ -552,10 +552,7 @@ class UnassignStructuralLoadCase(bpy.types.Operator, tool.Ifc.Operator):
|
||||
self.file = tool.Ifc.get()
|
||||
ifcopenshell.api.aggregate.unassign_object(
|
||||
self.file,
|
||||
**{
|
||||
"relating_object": self.file.by_id(self.work_plan),
|
||||
"products": [self.file.by_id(self.load_case)],
|
||||
},
|
||||
products=[self.file.by_id(self.load_case)],
|
||||
)
|
||||
return {"FINISHED"}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user