bim.load_schedule_of_rates_tree - remove dead code

This operator is unused anymore since d3b176e and it's using non-existent core method.
This commit is contained in:
Andrej730
2024-11-21 15:50:42 +05:00
parent 15354d2e06
commit 6e56fe8f9b
2 changed files with 0 additions and 12 deletions
@@ -67,7 +67,6 @@ classes = (
operator.LoadCostItemTaskQuantities,
operator.LoadCostItemTypes,
operator.LoadProductCostItems,
operator.LoadScheduleOfRates,
operator.RemoveCostColumn,
operator.RemoveCostItem,
operator.RemoveCostItemQuantity,
@@ -629,17 +629,6 @@ class AssignCostValue(bpy.types.Operator, tool.Ifc.Operator):
)
class LoadScheduleOfRates(bpy.types.Operator):
bl_idname = "bim.load_schedule_of_rates_tree"
bl_label = "Load Schedule of Rates"
bl_options = {"REGISTER", "UNDO"}
cost_schedule: bpy.props.IntProperty()
def execute(self, context):
core.load_schedule_of_rates_tree(tool.Cost, schedule_of_rates=tool.Ifc.get().by_id(self.cost_schedule))
return {"FINISHED"}
class ExpandCostItemRate(bpy.types.Operator, tool.Ifc.Operator):
bl_idname = "bim.expand_cost_item_rate"
bl_label = "Expand Cost Item Rate"