diff --git a/data/weather.py b/data/weather.py index fec8ca1..e80316f 100644 --- a/data/weather.py +++ b/data/weather.py @@ -37,7 +37,7 @@ def get_precipitation_summary(): try: data = response.json() total_rainfall = 0.0 - lines = [f"
📅 시간대별 강수량 :
시간대별 강수량 :
🌧️ 영업시간 중 총 예상 강수량: {total_rainfall:.1f}mm
") + lines.append(f"영업시간 중 총 예상 강수량: {total_rainfall:.1f}mm
") return ''.join(lines)