1 # Shadow.py 2 3 -class Shadow(): 4 ''' 5 Dummy class to make RaspiBrick source compatible with RaspiSim. All methods are empty. 6 ''' 7 8 - def __init__(self, *args): 9 pass 10 11 - def getCenter(self): 12 return None 13 14 - def inShadow(self, targe): 15 return False 16