Fix calls to three_words and six_words

This commit is contained in:
mmcwilliams 2024-06-28 14:39:20 -04:00
parent 42121d9cca
commit 944957e9cd
1 changed files with 2 additions and 2 deletions

4
app.py
View File

@ -52,8 +52,8 @@ def showMapFromLatLng(lat, lng):
@get('/api/<lat:float>,<lng:float>') @get('/api/<lat:float>,<lng:float>')
def latLngToHash(lat, lng): def latLngToHash(lat, lng):
try: try:
three = these.three_words((lat,lng)) three = these.three_words(lat,lng)
six = these.six_words((lat,lng)) six = these.six_words(lat,lng)
return {'three': three, 'six': six} return {'three': three, 'six': six}
except: except:
return {} return {}