Extra protection against string lat/longs creeping into the system

This commit is contained in:
Ian Renton
2026-02-14 07:57:36 +00:00
parent 6e7ffd626e
commit e6c9bb1853
2 changed files with 5 additions and 6 deletions

View File

@@ -282,7 +282,6 @@ class Spot:
# DX Grid to lat/lon and vice versa in case one is missing
if self.dx_grid and not self.dx_latitude:
try:
print(json.dumps(self))
ll = locator_to_latlong(self.dx_grid)
self.dx_latitude = ll[0]
self.dx_longitude = ll[1]