From b614d9b792e8b234f036a1ff44f7c6d61927818a Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Fri, 28 Jun 2024 14:54:00 -0400 Subject: [PATCH] Change arguments --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index e71397e..a1b5579 100755 --- a/app.py +++ b/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)