development #1

Merged
AllfatherHatt merged 157 commits from development into master 2025-06-14 15:47:26 +02:00
Showing only changes of commit ed1995d7f2 - Show all commits

View File

@ -7,8 +7,8 @@ WEATHER_API_KEY = environ.get('WEATHER_API_KEY')
URL = 'http://api.weatherapi.com/v1' URL = 'http://api.weatherapi.com/v1'
def time_now() -> datetime: def time_now() -> str:
return datetime.now(timezone.utc) return str(datetime.now(timezone.utc))
def get_current_weather(location: str) -> str: def get_current_weather(location: str) -> str: