Skip to content

Commit 92cb544

Browse files
authored
Update findARestaurant.py
1 parent a386b7b commit 92cb544

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lesson_3/06_Adding Features to your Mashup/Starter Code/findARestaurant.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
88
sys.stderr = codecs.getwriter('utf8')(sys.stderr)
99

10-
foursquare_client_id = 'SMQNYZFVCIOYIRAIXND2D5SYBLQUOPDB4HZTV13TT22AGACD'
11-
foursquare_client_secret = 'IHBS4VBHYWJL53NLIY2HSVI5A1144GJ3MDTYYY1KLKTMC4BV'
12-
google_api_key = 'AIzaSyBz7r2Kz6x7wO1zV9_O5Rcxmt8NahJ6kos'
10+
foursquare_client_id = '<CLIENT_ID>'
11+
foursquare_client_secret = '<CLIENT_SECRET>'
12+
google_api_key = '<API_KEY>'
1313

1414
def getGeocodeLocation(inputString):
1515
#Replace Spaces with '+' in URL
@@ -71,4 +71,4 @@ def findARestaurant(mealType, location):
7171
findARestaurant("Cappuccino", "Geneva, Switzerland")
7272
findARestaurant("Sushi", "Los Angeles, California")
7373
findARestaurant("Steak", "La Paz, Bolivia")
74-
findARestaurant("Gyros", "Sydney Austrailia")
74+
findARestaurant("Gyros", "Sydney Austrailia")

0 commit comments

Comments
 (0)