From e122e572b6dc3a758a87c90c98e8989db9c8a62c Mon Sep 17 00:00:00 2001 From: "DSTO\\pivatom" Date: Mon, 14 Jan 2019 09:14:41 +1030 Subject: [PATCH] Update voter interface --- DecisionSystem/voter.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/DecisionSystem/voter.py b/DecisionSystem/voter.py index 6b0da48..4c0fcbf 100644 --- a/DecisionSystem/voter.py +++ b/DecisionSystem/voter.py @@ -2,12 +2,8 @@ from Messaging.packmessage import PackMessage import umsgpack class Voter: - def __init__(self): - # self._client = - pass - - def submit_vote(self, vote_contents): + def submit_vote(self): raise NotImplementedError() - def request_vote(self): + def send_connected(self): raise NotImplementedError() \ No newline at end of file