From 9666d79fb4eb99f01c65bd9e1171590decc42a01 Mon Sep 17 00:00:00 2001 From: Martijn van Exel Date: Fri, 6 Apr 2018 11:46:49 -0600 Subject: [PATCH] remove print statement in test --- tests/test_api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index 9099c3d50d7..77bf83a8463 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -12,7 +12,6 @@ def test_geojson(): map_query = overpass.MapQuery(37.86517, -122.31851, 37.86687, -122.31635) osm_geo = api.get(map_query) - print osm_geo assert len(osm_geo['features']) > 1 osm_geo = api.get('node(area:3602758138)[amenity=cafe]')