From f5e9a8fa921109e9292ea8a8ad9bfec5e39a6152 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 16:34:41 -0700 Subject: [PATCH] Update locationdata.py --- locationdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locationdata.py b/locationdata.py index fe32ba5..ffd0f86 100644 --- a/locationdata.py +++ b/locationdata.py @@ -26,6 +26,6 @@ def where_am_i(lat=0, lon=0): if 'country' in address: whereIam += " " + address['country'] - whereIam += "Grid: " + mh.to_maiden(str(lat), str(lon)) + whereIam += "Grid: " + mh.to_maiden(lat, lon, precision=4) return whereIam \ No newline at end of file