diff --git a/aprsd/plugin_utils.py b/aprsd/plugin_utils.py index 33fe455..56fe245 100644 --- a/aprsd/plugin_utils.py +++ b/aprsd/plugin_utils.py @@ -33,9 +33,9 @@ def get_weather_gov_for_gps(lat, lon): ) try: url2 = ( - "https://forecast.weather.gov/MapClick.php?lat=%s" - "&lon=%s&FcstType=json" % (lat, lon) - #f"https://api.weather.gov/points/{lat},{lon}" + "https://forecast.weather.gov/MapClick.php?lat=%s" + "&lon=%s&FcstType=json" % (lat, lon) + # f"https://api.weather.gov/points/{lat},{lon}" ) LOG.debug(f"Fetching weather '{url2}'") response = requests.get(url2, headers=headers)