Skip to content

Commit

Permalink
owm: fixing overzealous exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
RustyBower committed Apr 5, 2023
1 parent c7922b3 commit a9f0baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sopel_modules/weather/providers/weather/openweathermap.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def openweathermap_weather(bot, latitude, longitude, location):
'appid': bot.config.weather.weather_api_key,
'lat': latitude,
'lon': longitude,
'exclude': 'current,minutely,hourly',
'exclude': 'minutely,hourly',
'units': 'metric'
}
try:
Expand Down

0 comments on commit a9f0baa

Please sign in to comment.