From 663f6a8c49f028be8ca8a1446cd8334f49da59ea Mon Sep 17 00:00:00 2001 From: "DSTO\\pivatom" Date: Tue, 18 Dec 2018 10:14:24 +1030 Subject: [PATCH] Add method for voter interface --- DecisionSystem/voter.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/DecisionSystem/voter.py b/DecisionSystem/voter.py index af39d76..6b0da48 100644 --- a/DecisionSystem/voter.py +++ b/DecisionSystem/voter.py @@ -1,7 +1,13 @@ from Messaging.packmessage import PackMessage +import umsgpack class Voter: - def submit_vote(self, vote_contents): - NotImplementedError + def __init__(self): + # self._client = + pass - \ No newline at end of file + def submit_vote(self, vote_contents): + raise NotImplementedError() + + def request_vote(self): + raise NotImplementedError() \ No newline at end of file