python and super is super

This commit is contained in:
Jonas Zeunert
2020-05-03 19:47:21 +02:00
parent c413ff28e7
commit 1def3c2b6e
43 changed files with 43 additions and 43 deletions

View File

@@ -11,4 +11,4 @@ class LeftBank(Bank):
def hit(self):
super.hit()
super().hit()()

View File

@@ -6,4 +6,4 @@ class LeftBankLeftTarget(BankTarget):
super().__init__(100, 'Left Bank Left')
def hit(self):
super.hit()
super().hit()()

View File

@@ -6,4 +6,4 @@ class LeftBankMiddleLeftTarget(BankTarget):
super().__init__(100, 'Left Bank Middle Left')
def hit(self):
super.hit()
super().hit()()

View File

@@ -6,4 +6,4 @@ class LeftBankMiddleRightTarget(BankTarget):
super().__init__(100, 'Left Bank Middle Right')
def hit(self):
super.hit()
super().hit()()

View File

@@ -6,4 +6,4 @@ class LeftBankRightTarget(Target):
super().__init__(100, 'Left Bank Right')
def hit(self):
super.hit()
super().hit()()