Change arguments
This commit is contained in:
parent
672670cf9f
commit
b614d9b792
4
app.py
4
app.py
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue