1 # Obstacle.py 2 3 -class Obstacle(): 4 ''' 5 Dummy class to make RaspiBrick source compatible with RaspiSim. All methods are empty. 6 ''' 7 - def __init__(self, *args): 8 pass 9