Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ def call_google_places_api(location, food_preference=None):
|
|
69 |
response = map_client.places_nearby(
|
70 |
location=(lat, lng),
|
71 |
keyword=search_string,
|
72 |
-
radius=
|
73 |
)
|
74 |
|
75 |
business_list = response.get('results')
|
@@ -113,7 +113,7 @@ def call_google_places_api(location, food_preference=None):
|
|
113 |
response = map_client.places_nearby(
|
114 |
location=(lat, lng),
|
115 |
keyword=search_string,
|
116 |
-
radius=
|
117 |
)
|
118 |
|
119 |
business_list = response.get('results')
|
|
|
69 |
response = map_client.places_nearby(
|
70 |
location=(lat, lng),
|
71 |
keyword=search_string,
|
72 |
+
radius=1000
|
73 |
)
|
74 |
|
75 |
business_list = response.get('results')
|
|
|
113 |
response = map_client.places_nearby(
|
114 |
location=(lat, lng),
|
115 |
keyword=search_string,
|
116 |
+
radius=2000
|
117 |
)
|
118 |
|
119 |
business_list = response.get('results')
|