fuck super
This commit is contained in:
@@ -6,7 +6,7 @@ from targets.right_bank import RightBankRight
|
||||
class RightBank(Bank):
|
||||
def __init__(self):
|
||||
targets = [RightBankLeft(), RightBankMiddle(), RightBankRight]
|
||||
super(0, "Right Bank", targets)
|
||||
super().__init__(0, "Right Bank", targets)
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from BankTarget import BankTarget
|
||||
|
||||
class RightBankLeft(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Right Bank Left")
|
||||
super().__init__(100, "Right Bank Left")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from BankTarget import BankTarget
|
||||
|
||||
class MiddleDropTarget(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, 'Right Bank Middle')
|
||||
super().__init__(100, 'Right Bank Middle')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
@@ -3,7 +3,7 @@ from BankTarget import BankTarget
|
||||
|
||||
class RightBankRight(BankTarget):
|
||||
def __init__(self):
|
||||
super(100, "Right Bank Right")
|
||||
super().__init__(100, "Right Bank Right")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
Reference in New Issue
Block a user