From 4ce743c0eecc6d5563cb882b6a32ce0c46f66df5 Mon Sep 17 00:00:00 2001 From: Charles Whittington Date: Thu, 12 Dec 2024 23:07:12 -0500 Subject: [PATCH 1/2] Added START and END constants --- src/travertino/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/travertino/constants.py b/src/travertino/constants.py index 2dcd325..5460c39 100644 --- a/src/travertino/constants.py +++ b/src/travertino/constants.py @@ -8,6 +8,8 @@ TOP = "top" BOTTOM = "bottom" CENTER = "center" +START = "start" +END = "end" ###################################################################### # Direction From 2814a70ace79c9d96e6065f383f7a2da39ae8cb3 Mon Sep 17 00:00:00 2001 From: Charles Whittington Date: Thu, 12 Dec 2024 23:10:13 -0500 Subject: [PATCH 2/2] Added changenote --- changes/241.feature.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/241.feature.rst diff --git a/changes/241.feature.rst b/changes/241.feature.rst new file mode 100644 index 0000000..4076f02 --- /dev/null +++ b/changes/241.feature.rst @@ -0,0 +1 @@ +Constants now include START and END.