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 690dfbecb94cae8ef9efbf3ae0ebaa973572112b Author: Greg Stein <[email protected]> AuthorDate: Sun Jun 5 03:37:53 2022 -0500 no need for arg. pull from DB. --- v3/steve/election.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/v3/steve/election.py b/v3/steve/election.py index 8c8c255..f5dc225 100644 --- a/v3/steve/election.py +++ b/v3/steve/election.py @@ -28,8 +28,7 @@ from . import db class Election: - def __init__(self, eid, db_fname): - self.eid = eid + def __init__(self, db_fname): self.db = db.DB(db_fname) # Construct cursors for all operations.
