python and super is super
This commit is contained in:
@@ -9,4 +9,4 @@ class RightBank(Bank):
|
||||
super().__init__(0, "Right Bank", targets)
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
super().hit()()
|
||||
@@ -6,4 +6,4 @@ class RightBankLeftTarget(BankTarget):
|
||||
super().__init__(100, "Right Bank Left")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
super().hit()()
|
||||
@@ -6,4 +6,4 @@ class RightBankMiddleTarget(BankTarget):
|
||||
super().__init__(100, 'Right Bank Middle')
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
super().hit()()
|
||||
@@ -6,4 +6,4 @@ class RightBankRightTarget(BankTarget):
|
||||
super().__init__(100, "Right Bank Right")
|
||||
|
||||
def hit(self):
|
||||
super.hit()
|
||||
super().hit()()
|
||||
Reference in New Issue
Block a user