Skip to content

Commit fb35f93

Browse files
committed
fix example, fixes #95
1 parent 40f1828 commit fb35f93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/readme_example.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
api = overpass.API()
1111
response = api.get('node["name"="Salt Lake City"]')
12-
print(response)
13-
print [(
14-
feature['properties']['name'],
15-
feature['id']) for feature in response["features"]]
12+
print([(
13+
feature['id'],
14+
feature['properties']['name'])
15+
for feature in response['features']])

0 commit comments

Comments
 (0)