From 30cbfad871c728e6449ac29ab300aff650e55f5e Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 15 Jul 2025 12:39:52 +0500 Subject: [PATCH] Fix code typo in 40f92d1 --- src/ifcopenshell-python/ifcopenshell/api/alignment/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/api/alignment/util.py b/src/ifcopenshell-python/ifcopenshell/api/alignment/util.py index 482013849f..e6802705f8 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/alignment/util.py +++ b/src/ifcopenshell-python/ifcopenshell/api/alignment/util.py @@ -137,7 +137,7 @@ def print_alignment_deep(alignment, indent=0): for agg in alignment.IsDecomposedBy: for child in agg.RelatedObjects: - print_alignmen_deep(child, indent + 2) + print_alignment_deep(child, indent + 2) def print_composite_curve(curve):