This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 9063bbe7c118d56ea7e973a9300cd8386be9d48c Author: Greg Stein <[email protected]> AuthorDate: Mon Dec 22 23:39:26 2025 -0600 add little comment about side effects --- v3/server/pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/v3/server/pages.py b/v3/server/pages.py index cb81293..ec6da33 100644 --- a/v3/server/pages.py +++ b/v3/server/pages.py @@ -513,6 +513,7 @@ def format_datetime(dt): def postprocess_election(e): "Post-process attributes in an Election, as an EasyDict." + # NOTE: side effects. This function manipulates the E argument. # Anything but 1 means the Election is not closed. e.closed = ezt.boolean(e.closed == 1)
