From 7a4f64246187e94227e8d5047215488fd029f54e Mon Sep 17 00:00:00 2001 From: projectmoon Date: Mon, 5 Aug 2024 10:14:16 +0200 Subject: [PATCH] fix quote --- osm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm.py b/osm.py index f947233..5ff1032 100644 --- a/osm.py +++ b/osm.py @@ -112,7 +112,7 @@ class OsmSearcher: return ([nominatim_result] if 'type' in nominatim_result and (nominatim_result['type'] == 'amenity' or nominatim_result['type'] == 'shop' - or nominatim_result['type'] == 'leisure + or nominatim_result['type'] == 'leisure' or nominatim_result['type'] == 'tourism') else [])