Files
picar/DecisionSystem/commander.py
2018-12-10 16:52:23 +10:30

6 lines
223 B
Python

class Commander:
def get_votes(self):
raise Exception("Vote cannot be submitted as it's not implemented")
def make_decision(self):
raise Exception("Vote cannot be submitted as it's not implemented")