From c79dd7d6fa965d175cebab290b36225c5741363b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Tue, 26 Mar 2024 08:05:53 -0700 Subject: [PATCH] weather/summary -> weather/report --- src/lvmapi/routers/weather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lvmapi/routers/weather.py b/src/lvmapi/routers/weather.py index 661f775..0eda046 100644 --- a/src/lvmapi/routers/weather.py +++ b/src/lvmapi/routers/weather.py @@ -18,9 +18,9 @@ @router.get("/") -@router.get("/summary") +@router.get("/report") async def get_weather(station: str = "DuPont") -> list[dict]: - """Returns the weather summary (last 60 minutes) from a weather station.""" + """Returns the weather report (last 60 minutes) from a weather station.""" df = await get_weather_data(station=station)