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

@@ -7,7 +7,7 @@ class LeaveUpperPlayfieldEvent(Event):
self.flipper = flipper
super().__init__("Leave Upper Playfield Event")
def trigger(self):
def trigger(self, _):
super().trigger()
self.flipper.deactivate()
self.playerState().stopUpperPlayfieldTimer()