fuck super
This commit is contained in:
@@ -3,7 +3,7 @@ from Target import Target
|
||||
|
||||
class CanalButtonTopTarget(Target):
|
||||
def __init__(self):
|
||||
super(20000, "Canal Button Bottom")
|
||||
super().__init__(20000, "Canal Button Bottom")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from Target import Target
|
||||
|
||||
class LeftLaneButton4Target(Target):
|
||||
def __init__(self):
|
||||
super(20000, "Canal Button Middle Bottom")
|
||||
super().__init__(20000, "Canal Button Middle Bottom")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from Target import Target
|
||||
|
||||
class LeftLaneButton3Target(Target):
|
||||
def __init__(self):
|
||||
super(20000, "Canal Button Middle")
|
||||
super().__init__(20000, "Canal Button Middle")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from Target import Target
|
||||
|
||||
class LeftLaneButton2Target(Target):
|
||||
def __init__(self):
|
||||
super(20000, "Canal Button Middle Top")
|
||||
super().__init__(20000, "Canal Button Middle Top")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -2,7 +2,7 @@ from Target import Target
|
||||
|
||||
class LeftLaneButton1Target(Target):
|
||||
def __init__(self):
|
||||
super(100, 'Left Lane Button #1')
|
||||
super().__init__(100, 'Left Lane Button #1')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
Reference in New Issue
Block a user