6 lines
223 B
Python
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") |