fuck super

This commit is contained in:
Jonas Zeunert
2020-03-12 00:21:47 +01:00
parent 8b94d32bac
commit a024f99f19
39 changed files with 39 additions and 39 deletions

View File

@@ -2,7 +2,7 @@ from Target import Target
class LeftInlaneTarget(Target):
def __init__(self):
super(100, 'Left Inlane')
super().__init__(100, 'Left Inlane')
def hit(self):
super.hit()

View File

@@ -2,7 +2,7 @@ from Target import Target
class LeftOutlaneTarget(Target):
def __init__(self):
super(100, 'Left Outlane')
super().__init__(100, 'Left Outlane')
def hit(self):
super.hit()

View File

@@ -3,7 +3,7 @@ from Target import Target
class RightOutlaneKickerTarget(Target):
def __init__(self):
super(10000, "Right Outlane Kicker")
super().__init__(10000, "Right Outlane Kicker")
#Scores 30000, 50000 when lit and advances 1-2-3-4-5 sequence
def hit(self):

View File

@@ -3,7 +3,7 @@ from Target import Target
class RightOutlaneTarget(Target):
def __init__(self):
super(50000, "Right Outlane")
super().__init__(50000, "Right Outlane")
def hit(self):
super.hit()