sequence.get_root_tasks_ids - remove unused method

This commit is contained in:
Andrej730
2025-07-24 18:51:14 +05:00
parent cbdd091d6f
commit a99bfd9294
@@ -307,10 +307,6 @@ def get_root_tasks(work_schedule: ifcopenshell.entity_instance) -> list[ifcopens
return [obj for rel in work_schedule.Controls for obj in rel.RelatedObjects if obj.is_a("IfcTask")]
def get_root_tasks_ids(work_schedule: ifcopenshell.entity_instance) -> list[int]:
return [obj.id() for rel in work_schedule.Controls for obj in rel.RelatedObjects if obj.is_a("IfcTask")]
def guess_date_range(work_schedule: ifcopenshell.entity_instance):
earliest = None
latest = None