diff --git a/components/i_feed/i_feed.py b/components/i_feed/i_feed.py index 108dd01..589c12e 100644 --- a/components/i_feed/i_feed.py +++ b/components/i_feed/i_feed.py @@ -29,14 +29,12 @@ if __name__ == '__main__': print("Is the entity_ident_server running and reachable?") raise e - print('Traffic lights', traffic_lights['cursor']) for traffic_light in traffic_lights['cursor']: print(traffic_light) TrafficLight(tlid=traffic_light['id'], switching_time=traffic_light['switchingTime']).start() time.sleep(1) - print('Cars', cars['cursor']) for car in cars['cursor']: print(car) Vehicle(vin=car['vin']).start_driving()