bim.contract / expand cost items - remove unused prop

This commit is contained in:
Andrej
2025-06-06 18:19:34 +05:00
parent c76785e02c
commit 14e8fad841
@@ -162,7 +162,6 @@ class ExpandCostItems(bpy.types.Operator, tool.Ifc.Operator):
bl_label = "Expand Cost Items"
bl_options = {"REGISTER", "UNDO"}
bl_description = "Expand all cost items"
cost_items: bpy.props.StringProperty()
def _execute(self, context):
core.expand_cost_items(tool.Cost)
@@ -187,7 +186,6 @@ class ContractCostItems(bpy.types.Operator, tool.Ifc.Operator):
bl_label = "Contract Cost Item"
bl_options = {"REGISTER", "UNDO"}
bl_description = "Collapse cost item tree"
cost_item: bpy.props.IntProperty()
def _execute(self, context):
core.contract_cost_items(tool.Cost)