diff --git a/src/blenderbim/blenderbim/core/sequence.py b/src/blenderbim/blenderbim/core/sequence.py index e6d2a1eebf..510caa8a04 100644 --- a/src/blenderbim/blenderbim/core/sequence.py +++ b/src/blenderbim/blenderbim/core/sequence.py @@ -155,10 +155,6 @@ def add_task( sequence.load_task_properties() -def enable_editing_task(sequence, task=None) -> None: - sequence.enable_editing_task(task) - - def enable_editing_task_attributes(sequence: tool.Sequence, task: ifcopenshell.entity_instance) -> None: sequence.load_task_attributes(task) sequence.enable_editing_task_attributes(task) diff --git a/src/blenderbim/blenderbim/tool/sequence.py b/src/blenderbim/blenderbim/tool/sequence.py index 8d36a975d4..8cd078710c 100644 --- a/src/blenderbim/blenderbim/tool/sequence.py +++ b/src/blenderbim/blenderbim/tool/sequence.py @@ -480,11 +480,6 @@ class Sequence(blenderbim.core.tool.Sequence): def get_direct_task_outputs(cls, task: ifcopenshell.entity_instance) -> list[ifcopenshell.entity_instance]: return ifcopenshell.util.sequence.get_direct_task_outputs(task) - @classmethod - def get_task_outputs(cls, task): - is_deep = bpy.context.scene.BIMWorkScheduleProperties.show_nested_outputs - return ifcopenshell.util.sequence.get_task_outputs(task, is_deep) - @classmethod def enable_editing_work_calendar_times(cls, work_calendar: ifcopenshell.entity_instance) -> None: props = bpy.context.scene.BIMWorkCalendarProperties