from enum import Enum [docs] class CurveType(str, Enum): """The type of Curve (embedded within path)""" # noqa: E501 LINE = "line" ARC = "arc" NURBS = "nurbs" [docs] def __str__(self) -> str: return str(self.value)