diff --git a/BankTarget.py b/BankTarget.py index c997034..4d5d3ae 100644 --- a/BankTarget.py +++ b/BankTarget.py @@ -1,8 +1,8 @@ from Target import Target class BankTarget(Target): - def __init__(self, points): - super().__init__(points) + def __init__(self, points, name): + super().__init__(points, name) self.is_hit = False def hit(self):