From db222373694a1911923c94c201cd41e39cc4cc46 Mon Sep 17 00:00:00 2001 From: jan Date: Mon, 9 Mar 2026 11:20:04 -0700 Subject: [PATCH] [PathCap] clean up comment --- masque/shapes/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/shapes/path.py b/masque/shapes/path.py index 542cf11..3df55f4 100644 --- a/masque/shapes/path.py +++ b/masque/shapes/path.py @@ -26,7 +26,7 @@ class PathCap(Enum): def __lt__(self, other: Any) -> bool: if self.__class__ is not other.__class__: return self.__class__.__name__ < other.__class__.__name__ - # Order: Flush, Square, Round, SquareCustom, Circle + # Order: Flush, Square, Circle, SquareCustom order = { PathCap.Flush: 0, PathCap.Square: 1,