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 b06d7306251998b2af1ce58f668ee858d1a64290 Author: Greg Stein <[email protected]> AuthorDate: Mon Sep 22 19:31:01 2025 -0500 Remove a couple debug print() calls. --- v3/steve/election.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/v3/steve/election.py b/v3/steve/election.py index b607edb..0d00c3a 100644 --- a/v3/steve/election.py +++ b/v3/steve/election.py @@ -183,7 +183,6 @@ class Election: # Use a distinct cursor to insert the SALT value. salt = crypto.gen_salt() - #print('ROW will use:', table, r[0], salt) self.c_salt_mayvote.perform((salt, mayvote[0])) self.m_all_issues.execute('COMMIT') @@ -330,7 +329,6 @@ class Election: # superfluous. But it certainly should not hurt. crypto.shuffle(votes) # in-place - print('VOTES:', votes) # Perform the tally, and return the results. m = vtypes.vtype_module(issue.type) return m.tally(votes, self.json2kv(issue.kv))
