Print error

This commit is contained in:
mmcwilliams 2024-06-28 14:45:09 -04:00
parent 944957e9cd
commit 8e4f798ca3
1 changed files with 2 additions and 1 deletions

3
app.py
View File

@ -55,7 +55,8 @@ def latLngToHash(lat, lng):
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 Exception as error:
print(error)
return {} return {}