Draft: Fixed small bug in draftgeoutils.edges

This commit is contained in:
Yorik van Havre
2025-02-05 11:08:24 +01:00
committed by Yorik van Havre
parent e47af7645c
commit 4a0fbe8768

View File

@@ -205,7 +205,7 @@ def get_referenced_edges(property_value):
property_value = [property_value]
for element in property_value:
if hasattr(element, "Shape") and element.Shape:
edges += shape.Edges
edges += element.Shape.Edges
elif isinstance(element, tuple) and len(element) == 2:
object, subelement_names = element
if hasattr(object, "Shape") and object.Shape: