diff --git a/Bank.py b/Bank.py index d5a1f1c..930d2a3 100644 --- a/Bank.py +++ b/Bank.py @@ -12,7 +12,7 @@ class Bank(Target): def __all_targets_hit__(self): self.__reset_all_targets__() - super().hit()() + super().hit() pass def __reset_all_targets__(self): diff --git a/BankTarget.py b/BankTarget.py index 776efbf..d9a014a 100644 --- a/BankTarget.py +++ b/BankTarget.py @@ -7,7 +7,7 @@ class BankTarget(Target): def hit(self): self.is_hit = True - super().hit()() + super().hit() #notify Bank def reset(self): diff --git a/targets/ReboundContactTarget.py b/targets/ReboundContactTarget.py index c0effca..5a841bb 100644 --- a/targets/ReboundContactTarget.py +++ b/targets/ReboundContactTarget.py @@ -5,4 +5,4 @@ class ReboundContactTarget(Target): super().__init__(100, 'Rebound Contact') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/bottom_lanes/LeftInlaneTarget.py b/targets/bottom_lanes/LeftInlaneTarget.py index f2df8fb..31387dd 100644 --- a/targets/bottom_lanes/LeftInlaneTarget.py +++ b/targets/bottom_lanes/LeftInlaneTarget.py @@ -5,4 +5,4 @@ class LeftInlaneTarget(Target): super().__init__(100, 'Left Inlane') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/bottom_lanes/LeftOutlaneTarget.py b/targets/bottom_lanes/LeftOutlaneTarget.py index 44aaa03..1686d85 100644 --- a/targets/bottom_lanes/LeftOutlaneTarget.py +++ b/targets/bottom_lanes/LeftOutlaneTarget.py @@ -5,4 +5,4 @@ class LeftOutlaneTarget(Target): super().__init__(100, 'Left Outlane') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/bottom_lanes/RightInlaneTarget.py b/targets/bottom_lanes/RightInlaneTarget.py index 9beb2c2..ebf0cca 100644 --- a/targets/bottom_lanes/RightInlaneTarget.py +++ b/targets/bottom_lanes/RightInlaneTarget.py @@ -6,4 +6,4 @@ class RightInlaneTarget(Target): super().__init__(100, 'Right Inlane') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/bottom_lanes/RightOutlaneKickerTarget.py b/targets/bottom_lanes/RightOutlaneKickerTarget.py index faababa..98188c2 100644 --- a/targets/bottom_lanes/RightOutlaneKickerTarget.py +++ b/targets/bottom_lanes/RightOutlaneKickerTarget.py @@ -7,4 +7,4 @@ class RightOutlaneKickerTarget(Target): #Scores 30000, 50000 when lit and advances 1-2-3-4-5 sequence def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/bottom_lanes/RightOutlaneTarget.py b/targets/bottom_lanes/RightOutlaneTarget.py index 10ad31a..d3c1a6c 100644 --- a/targets/bottom_lanes/RightOutlaneTarget.py +++ b/targets/bottom_lanes/RightOutlaneTarget.py @@ -6,4 +6,4 @@ class RightOutlaneTarget(Target): super().__init__(50000, "Right Outlane") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/canal/CanalButtonBottomTarget.py b/targets/canal/CanalButtonBottomTarget.py index 73e9a5e..809f007 100644 --- a/targets/canal/CanalButtonBottomTarget.py +++ b/targets/canal/CanalButtonBottomTarget.py @@ -6,4 +6,4 @@ class CanalButtonTopTarget(Target): super().__init__(20000, "Canal Button Bottom") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/canal/CanalButtonMiddleBottomTarget.py b/targets/canal/CanalButtonMiddleBottomTarget.py index 638f05d..0ca2ae0 100644 --- a/targets/canal/CanalButtonMiddleBottomTarget.py +++ b/targets/canal/CanalButtonMiddleBottomTarget.py @@ -6,4 +6,4 @@ class LeftLaneButton4Target(Target): super().__init__(20000, "Canal Button Middle Bottom") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/canal/CanalButtonMiddleTarget.py b/targets/canal/CanalButtonMiddleTarget.py index 799f95b..3b82d6c 100644 --- a/targets/canal/CanalButtonMiddleTarget.py +++ b/targets/canal/CanalButtonMiddleTarget.py @@ -6,4 +6,4 @@ class LeftLaneButton3Target(Target): super().__init__(20000, "Canal Button Middle") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/canal/CanalButtonMiddleTopTarget.py b/targets/canal/CanalButtonMiddleTopTarget.py index c6d934e..be562e3 100644 --- a/targets/canal/CanalButtonMiddleTopTarget.py +++ b/targets/canal/CanalButtonMiddleTopTarget.py @@ -6,4 +6,4 @@ class LeftLaneButton2Target(Target): super().__init__(20000, "Canal Button Middle Top") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/canal/CanalButtonTopTarget.py b/targets/canal/CanalButtonTopTarget.py index 4783e7c..505f377 100644 --- a/targets/canal/CanalButtonTopTarget.py +++ b/targets/canal/CanalButtonTopTarget.py @@ -5,4 +5,4 @@ class LeftLaneButton1Target(Target): super().__init__(100, 'Left Lane Button #1') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget1.py b/targets/fixed_targets/FixedTarget1.py index 503af11..5b1a2d4 100644 --- a/targets/fixed_targets/FixedTarget1.py +++ b/targets/fixed_targets/FixedTarget1.py @@ -6,4 +6,4 @@ class FixedTarget1(Target): super().__init__(0, "Fixed Target 1") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget2.py b/targets/fixed_targets/FixedTarget2.py index b872ec9..7a71944 100644 --- a/targets/fixed_targets/FixedTarget2.py +++ b/targets/fixed_targets/FixedTarget2.py @@ -6,4 +6,4 @@ class FixedTarget2(Target): super().__init__(0, "Fixed Target 2") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget3.py b/targets/fixed_targets/FixedTarget3.py index 79bf2fa..93e717c 100644 --- a/targets/fixed_targets/FixedTarget3.py +++ b/targets/fixed_targets/FixedTarget3.py @@ -5,4 +5,4 @@ class FixedTarget3(Target): super().__init__(100, 'Fixed Target 3') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget4.py b/targets/fixed_targets/FixedTarget4.py index 27f1044..a1fbe5b 100644 --- a/targets/fixed_targets/FixedTarget4.py +++ b/targets/fixed_targets/FixedTarget4.py @@ -6,4 +6,4 @@ class FixedTarget4(Target): super().__init__(100, 'Fixed Target 4') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget5.py b/targets/fixed_targets/FixedTarget5.py index e01f49b..9fd82dc 100644 --- a/targets/fixed_targets/FixedTarget5.py +++ b/targets/fixed_targets/FixedTarget5.py @@ -6,4 +6,4 @@ class FixedTarget5(Target): super().__init__(100, 'Fixed Target 5') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/left_bank/LeftBank.py b/targets/left_bank/LeftBank.py index 505118e..7220525 100644 --- a/targets/left_bank/LeftBank.py +++ b/targets/left_bank/LeftBank.py @@ -11,4 +11,4 @@ class LeftBank(Bank): def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/left_bank/LeftBankLeftTarget.py b/targets/left_bank/LeftBankLeftTarget.py index e3208c4..5842022 100644 --- a/targets/left_bank/LeftBankLeftTarget.py +++ b/targets/left_bank/LeftBankLeftTarget.py @@ -6,4 +6,4 @@ class LeftBankLeftTarget(BankTarget): super().__init__(100, 'Left Bank Left') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/left_bank/LeftBankMiddleLeftTarget.py b/targets/left_bank/LeftBankMiddleLeftTarget.py index d568dfa..4835600 100644 --- a/targets/left_bank/LeftBankMiddleLeftTarget.py +++ b/targets/left_bank/LeftBankMiddleLeftTarget.py @@ -6,4 +6,4 @@ class LeftBankMiddleLeftTarget(BankTarget): super().__init__(100, 'Left Bank Middle Left') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/left_bank/LeftBankMiddleRightTarget.py b/targets/left_bank/LeftBankMiddleRightTarget.py index e82559c..3aa6d17 100644 --- a/targets/left_bank/LeftBankMiddleRightTarget.py +++ b/targets/left_bank/LeftBankMiddleRightTarget.py @@ -6,4 +6,4 @@ class LeftBankMiddleRightTarget(BankTarget): super().__init__(100, 'Left Bank Middle Right') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/left_bank/LeftBankRightTarget.py b/targets/left_bank/LeftBankRightTarget.py index 4ba793e..4d7817e 100644 --- a/targets/left_bank/LeftBankRightTarget.py +++ b/targets/left_bank/LeftBankRightTarget.py @@ -6,4 +6,4 @@ class LeftBankRightTarget(Target): super().__init__(100, 'Left Bank Right') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/pop_bumpers/LeftPopTarget.py b/targets/pop_bumpers/LeftPopTarget.py index 9db8703..c44235c 100644 --- a/targets/pop_bumpers/LeftPopTarget.py +++ b/targets/pop_bumpers/LeftPopTarget.py @@ -6,4 +6,4 @@ class LeftPopTarget(Target): super().__init__(0, "Left Pop") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/pop_bumpers/RightPopTarget.py b/targets/pop_bumpers/RightPopTarget.py index adf3d47..c200952 100644 --- a/targets/pop_bumpers/RightPopTarget.py +++ b/targets/pop_bumpers/RightPopTarget.py @@ -6,4 +6,4 @@ class RightPopTarget(Target): super().__init__(100, 'Right Pop') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/right_bank/RightBank.py b/targets/right_bank/RightBank.py index 1010bd1..a0f0e5c 100644 --- a/targets/right_bank/RightBank.py +++ b/targets/right_bank/RightBank.py @@ -9,4 +9,4 @@ class RightBank(Bank): super().__init__(0, "Right Bank", targets) def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/right_bank/RightBankLeftTarget.py b/targets/right_bank/RightBankLeftTarget.py index b422f51..e23869a 100644 --- a/targets/right_bank/RightBankLeftTarget.py +++ b/targets/right_bank/RightBankLeftTarget.py @@ -6,4 +6,4 @@ class RightBankLeftTarget(BankTarget): super().__init__(100, "Right Bank Left") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/right_bank/RightBankMiddleTarget.py b/targets/right_bank/RightBankMiddleTarget.py index f25317a..02420cb 100644 --- a/targets/right_bank/RightBankMiddleTarget.py +++ b/targets/right_bank/RightBankMiddleTarget.py @@ -6,4 +6,4 @@ class RightBankMiddleTarget(BankTarget): super().__init__(100, 'Right Bank Middle') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/right_bank/RightBankRightTarget.py b/targets/right_bank/RightBankRightTarget.py index 2598b14..eb7037d 100644 --- a/targets/right_bank/RightBankRightTarget.py +++ b/targets/right_bank/RightBankRightTarget.py @@ -6,4 +6,4 @@ class RightBankRightTarget(BankTarget): super().__init__(100, "Right Bank Right") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/slingshots/LeftSlingshotTarget.py b/targets/slingshots/LeftSlingshotTarget.py index c950c32..8e1487f 100644 --- a/targets/slingshots/LeftSlingshotTarget.py +++ b/targets/slingshots/LeftSlingshotTarget.py @@ -5,4 +5,4 @@ class LeftSlingshotTarget(Target): super().__init__(100, 'Left Slingshot') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/slingshots/RightSlingshotTarget.py b/targets/slingshots/RightSlingshotTarget.py index 19b783a..2161f8b 100644 --- a/targets/slingshots/RightSlingshotTarget.py +++ b/targets/slingshots/RightSlingshotTarget.py @@ -6,4 +6,4 @@ class RightSlingshotTarget(Target): super().__init__(10, "Right Slingshot") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/specials/SpecialOrangeTarget.py b/targets/specials/SpecialOrangeTarget.py index 53140fd..38ff2cf 100644 --- a/targets/specials/SpecialOrangeTarget.py +++ b/targets/specials/SpecialOrangeTarget.py @@ -9,4 +9,4 @@ class FixedSpecialOrangeTarget(Target): super().__init__(100000, "Special Orange") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/specials/SpecialRedTarget.py b/targets/specials/SpecialRedTarget.py index e951a26..b047f7b 100644 --- a/targets/specials/SpecialRedTarget.py +++ b/targets/specials/SpecialRedTarget.py @@ -8,4 +8,4 @@ class FixedSpecialRedTarget(Target): super().__init__(10000, "Special Red") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/specials/SpinnerTarget.py b/targets/specials/SpinnerTarget.py index f6d1191..b0e5add 100644 --- a/targets/specials/SpinnerTarget.py +++ b/targets/specials/SpinnerTarget.py @@ -5,4 +5,4 @@ class SpinnerTarget(Target): super().__init__(100, 'Spinner') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/technical/CreditTarget.py b/targets/technical/CreditTarget.py index 5bf7604..00e403b 100644 --- a/targets/technical/CreditTarget.py +++ b/targets/technical/CreditTarget.py @@ -6,4 +6,4 @@ class CreditTarget(Target): super().__init__(0, 'Credit') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/technical/OutholeTarget.py b/targets/technical/OutholeTarget.py index e130b54..04814b3 100644 --- a/targets/technical/OutholeTarget.py +++ b/targets/technical/OutholeTarget.py @@ -5,4 +5,4 @@ class OutholeTarget(Target): super().__init__(100, 'Outhole') def hit(self): - super().hit()() + super().hit() diff --git a/targets/technical/RisingBall.py b/targets/technical/RisingBall.py index e7b0dae..d9391c8 100644 --- a/targets/technical/RisingBall.py +++ b/targets/technical/RisingBall.py @@ -6,4 +6,4 @@ class RisingBall(Target): super().__init__(0, "Rising Ball") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/top_bank/TopBank.py b/targets/top_bank/TopBank.py index fb4e796..87d2cac 100644 --- a/targets/top_bank/TopBank.py +++ b/targets/top_bank/TopBank.py @@ -12,4 +12,4 @@ class TopBank(Bank): super().__init__(0, "Top Bank", targets) def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/top_bank/TopBankLeftTarget.py b/targets/top_bank/TopBankLeftTarget.py index 3e5c42d..321661b 100644 --- a/targets/top_bank/TopBankLeftTarget.py +++ b/targets/top_bank/TopBankLeftTarget.py @@ -6,4 +6,4 @@ class TopBankLeftTarget(BankTarget): super().__init__(100, 'Top Bank Left') def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/top_bank/TopBankMiddleLeftTarget.py b/targets/top_bank/TopBankMiddleLeftTarget.py index 28e8b43..1b2cabc 100644 --- a/targets/top_bank/TopBankMiddleLeftTarget.py +++ b/targets/top_bank/TopBankMiddleLeftTarget.py @@ -6,4 +6,4 @@ class TopBankMiddleLeftTarget(BankTarget): super().__init__(100, "Top Bank Middle Left") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/top_bank/TopBankMiddleRightTarget.py b/targets/top_bank/TopBankMiddleRightTarget.py index 46e2ae0..a21b57a 100644 --- a/targets/top_bank/TopBankMiddleRightTarget.py +++ b/targets/top_bank/TopBankMiddleRightTarget.py @@ -5,4 +5,4 @@ class TopBankMiddleRightTarget(BankTarget): super().__init__(100, "Top Bank Middle Right") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/top_bank/TopBankMiddleTarget.py b/targets/top_bank/TopBankMiddleTarget.py index dcdd8ff..7fb7e4a 100644 --- a/targets/top_bank/TopBankMiddleTarget.py +++ b/targets/top_bank/TopBankMiddleTarget.py @@ -6,4 +6,4 @@ class TopBankMiddleTarget(BankTarget): super().__init__(100, "Top Bank Middle") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file diff --git a/targets/top_bank/TopBankRightTarget.py b/targets/top_bank/TopBankRightTarget.py index 5d3cf6b..9d3bbbe 100644 --- a/targets/top_bank/TopBankRightTarget.py +++ b/targets/top_bank/TopBankRightTarget.py @@ -6,4 +6,4 @@ class TopBankRightTarget(BankTarget): super().__init__(100000, "Top Bank Right") def hit(self): - super().hit()() \ No newline at end of file + super().hit() \ No newline at end of file