diff --git a/src/ifcopenshell-python/ifcopenshell/util/shape_builder.py b/src/ifcopenshell-python/ifcopenshell/util/shape_builder.py index 4f33b243fd..5e56282195 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/shape_builder.py +++ b/src/ifcopenshell-python/ifcopenshell/util/shape_builder.py @@ -44,7 +44,7 @@ if TYPE_CHECKING: VectorType = Union[Sequence[float], Vector, np.ndarray] else: # Ensure it's exportable, so other modules can reuse it for typing. - VectorType = ... + VectorType = Any SequenceOfVectors = Union[Sequence[VectorType], np.ndarray]