This commit is contained in:
Jonas Zeunert
2020-03-09 20:43:00 +01:00
parent c6d254bc08
commit d652435270
2 changed files with 2 additions and 2 deletions

View File

@@ -2,4 +2,4 @@ from displays.Display import Display
class PlayerDisplay(Display):
def __init__(self, name):
super(name)
super(PlayerDisplay, self).__init__(name)

View File

@@ -2,7 +2,7 @@ from displays.Display import Display
class SpecialDisplay(Display):
def __init__(self, name):
super(name)
super(SpecialDisplay, self).__init__(name)
self.credits = 0
self.gameTimeBonus = 0
self.ballsToPlay = 0