[PathCap] clean up comment

This commit is contained in:
jan 2026-03-09 11:20:04 -07:00
commit db22237369

View file

@ -26,7 +26,7 @@ class PathCap(Enum):
def __lt__(self, other: Any) -> bool: def __lt__(self, other: Any) -> bool:
if self.__class__ is not other.__class__: if self.__class__ is not other.__class__:
return self.__class__.__name__ < other.__class__.__name__ return self.__class__.__name__ < other.__class__.__name__
# Order: Flush, Square, Round, SquareCustom, Circle # Order: Flush, Square, Circle, SquareCustom
order = { order = {
PathCap.Flush: 0, PathCap.Flush: 0,
PathCap.Square: 1, PathCap.Square: 1,