diff --git a/data/weather.py b/data/weather.py
index fe2a11f..ba890b0 100644
--- a/data/weather.py
+++ b/data/weather.py
@@ -37,9 +37,9 @@ def get_precipitation_summary():
try:
data = response.json()
total_rainfall = 0.0
- lines = [f'
[시간대별 강수량]
']
- lines.append(f'')
- lines.append(f'| 시간 | 강수량 |
')
+ lines = [f'[시간대별 강수량]
']
+ lines.append(f'
')
+ lines.append(f'| 시간 | 강수량 |
')
for item in data['response']['body']['items']['item']:
if item['category'] == 'PCP' and item['fcstDate'] == TODAY:
@@ -47,11 +47,11 @@ def get_precipitation_summary():
if 900 < int(time) < 2300:
mm = parse_precip(item['fcstValue'])
time_str = f"{time[:2]}:{time[2:]}" # '11:00'
- lines.append(f"| {time_str} | {mm}mm |
")
+ lines.append(f'| {time_str} | {mm}mm |
')
total_rainfall += mm
- lines.append("
")
+ lines.append("
")
lines.append(f"영업시간 중 총 예상 강수량: {total_rainfall:.1f}mm
")
return ''.join(lines)