Skip to content

Commit

Permalink
fix(weather): remove debug print statement from WeatherWidget API URL
Browse files Browse the repository at this point in the history
  • Loading branch information
amnweb committed Dec 2, 2024
1 parent 4a35fe8 commit 585ed66
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/core/widgets/yasb/weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ def __init__(
self._icons = icons
self._api_key = api_key if api_key != 'env' else os.getenv('YASB_WEATHER_API_KEY')
self.api_url = f"http://api.weatherapi.com/v1/forecast.json?key={self._api_key}&q={urllib.parse.quote(self._location)}&days=1&aqi=no&alerts=no"
print(self.api_url)
# Store weather data
self.weather_data = None
self._show_alt_label = False
Expand Down

0 comments on commit 585ed66

Please sign in to comment.