4 lines
120 B
Python
4 lines
120 B
Python
class Voter:
|
|
def submit_vote(self):
|
|
raise Exception("Vote cannot be submitted as it's not implemented")
|
|
|