8 lines
217 B
Python
8 lines
217 B
Python
from events.FlapEvent import FlapEvent
|
|
from solenoids.LeftFlapSolenoid import LeftFlapSolenoid
|
|
|
|
|
|
class LeftFlapEvent(FlapEvent):
|
|
def __init__(self):
|
|
super().__init__(LeftFlapSolenoid(), "Left Flap Event")
|