From 944957e9cd4c81989b532cc556862ff49d38e036 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Fri, 28 Jun 2024 14:39:20 -0400 Subject: [PATCH] Fix calls to three_words and six_words --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 114be10..6a8d17b 100755 --- a/app.py +++ b/app.py @@ -52,8 +52,8 @@ def showMapFromLatLng(lat, lng): @get('/api/,') def latLngToHash(lat, lng): 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: return {}