From db9e1d23d1421ca0842208f862fe50849d7fcfd8 Mon Sep 17 00:00:00 2001 From: Hemna Date: Mon, 7 Aug 2023 11:07:01 -0400 Subject: [PATCH] Fixed pep8 failures --- aprsd/plugin_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)