From 4653fa5738efb7cfa58a61b2e106556c58cd26de Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Wed, 2 Jun 2021 23:06:19 +0200 Subject: [PATCH] remove prints --- components/i_feed/i_feed.py | 2 -- 1 file changed, 2 deletions(-) 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()