From 2692341d3ad7c921412b3c8ab7f4f05801207e1f Mon Sep 17 00:00:00 2001 From: Richard Brice <37087370+RickBrice@users.noreply.github.com> Date: Thu, 5 Feb 2026 15:10:33 -0800 Subject: [PATCH] Fixes typo --- .../api/alignment/_create_offset_curve_representation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/api/alignment/_create_offset_curve_representation.py b/src/ifcopenshell-python/ifcopenshell/api/alignment/_create_offset_curve_representation.py index bb3fa6cbe8..a5675a4dc2 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/alignment/_create_offset_curve_representation.py +++ b/src/ifcopenshell-python/ifcopenshell/api/alignment/_create_offset_curve_representation.py @@ -37,7 +37,7 @@ def _create_offset_curve_representation( if not alignment.is_a(expected_type): raise TypeError(f"Expected {expected_type} but got {alignment.is_a()}") - expected_type = "IfcPointByDistaceExpression" + expected_type = "IfcPointByDistanceExpression" for offset in offsets: if not offset.is_a(expected_type): raise TypeError(f"Expected {expected_type} but got {offset.is_a()}")