fuck super
This commit is contained in:
@@ -2,7 +2,7 @@ from Target import Target
|
||||
|
||||
class LeftSlingshotTarget(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Left Slingshot')
|
||||
super().__init__(100, 'Left Slingshot')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from Target import Target
|
||||
|
||||
class RightSlingshotTarget(Target):
|
||||
def __init__(self):
|
||||
super(10, "Right Slingshot")
|
||||
super().__init__(10, "Right Slingshot")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
Reference in New Issue
Block a user