Change arguments

This commit is contained in:
mmcwilliams 2024-06-28 14:54:00 -04:00
parent 672670cf9f
commit b614d9b792
1 changed files with 2 additions and 2 deletions

4
app.py
View File

@ -55,8 +55,8 @@ def latLngToHash(lat, lng):
print(lat, file=sys.stdout)
print(lng, file=sys.stdout)
try:
three = these.three_words(lat,lng)
six = these.six_words(lat,lng)
three = these.three_words((lat,lng,))
six = these.six_words((lat,lng,))
return {'three': three, 'six': six}
except Exception as error:
print(error, file=sys.stderr)