From da28c737e01e9527fc3fc85605078a84c2f8f288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Verg=C3=A9s?= Date: Fri, 22 Sep 2023 13:09:59 +0200 Subject: [PATCH] change library types --- .../src/bulletin_board/electionguard/bulletin_board.py | 2 +- .../python-wrapper/src/bulletin_board/electionguard/messages.py | 2 +- .../src/bulletin_board/electionguard/tally_decryptor.py | 2 +- .../python-wrapper/src/bulletin_board/electionguard/trustee.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/bulletin_board.py b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/bulletin_board.py index 1917619a..6841faf5 100644 --- a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/bulletin_board.py +++ b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/bulletin_board.py @@ -11,7 +11,7 @@ from electionguard.election import ElectionConstants from electionguard.key_ceremony import combine_election_public_keys from electionguard.tally import CiphertextTally -from electionguard.types import GUARDIAN_ID +from electionguard.type import GUARDIAN_ID from electionguard.utils import get_optional from .common import Content, Context, ElectionStep, Wrapper diff --git a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/messages.py b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/messages.py index 3a344c60..a4dcbca3 100644 --- a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/messages.py +++ b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/messages.py @@ -17,7 +17,7 @@ PublicKeySet, ) from electionguard.serializable import Serializable -from electionguard.types import CONTEST_ID, GUARDIAN_ID +from electionguard.type import CONTEST_ID, GUARDIAN_ID @dataclass diff --git a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/tally_decryptor.py b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/tally_decryptor.py index 8607e561..9c40cb14 100644 --- a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/tally_decryptor.py +++ b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/tally_decryptor.py @@ -10,7 +10,7 @@ from electionguard.group import ElementModQ from electionguard.key_ceremony import ElectionPublicKey from electionguard.tally import CiphertextTally, PlaintextTally, PlaintextTallyContest -from electionguard.types import CONTEST_ID, GUARDIAN_ID, SELECTION_ID +from electionguard.type import CONTEST_ID, GUARDIAN_ID, SELECTION_ID from .messages import Compensations diff --git a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/trustee.py b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/trustee.py index 3162419f..81ae329d 100644 --- a/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/trustee.py +++ b/voting_schemes/electionguard/python-wrapper/src/bulletin_board/electionguard/trustee.py @@ -16,7 +16,7 @@ from electionguard.manifest import InternalManifest from electionguard.serializable import Serializable from electionguard.tally import CiphertextTally, CiphertextTallyContest -from electionguard.types import CONTEST_ID, GUARDIAN_ID, SELECTION_ID +from electionguard.type import CONTEST_ID, GUARDIAN_ID, SELECTION_ID from electionguard.utils import get_optional from .common import Content, Context, ElectionStep, Wrapper, unwrap