fix method signature

This commit is contained in:
Jonas Zeunert
2020-05-07 21:56:27 +02:00
parent 08f36d7441
commit e7309b173f
9 changed files with 9 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ class EnterUpperPlayfieldEvent(Event):
self.flipper = TopFlipper()
super().__init__("Enter Upper Playfield Event")
def trigger(self):
def trigger(self, _):
super().trigger()
self.flipper.activate()
self.playerState().startUpperPlayfieldTimer()