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

@@ -6,6 +6,6 @@ class FlapEvent(Event):
self.flapSolenoid = flapSolenoid
super().__init__(name)
def trigger(self):
def trigger(self, _):
super().trigger()
self.flapSolenoid.trigger()