diff --git a/data/weather.py b/data/weather.py
index d0d01d2..fe2a11f 100644
--- a/data/weather.py
+++ b/data/weather.py
@@ -37,7 +37,9 @@ def get_precipitation_summary():
try:
data = response.json()
total_rainfall = 0.0
- lines = [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:
diff --git a/data/weather_capture.py b/data/weather_capture.py
index bd5b409..c474e37 100644
--- a/data/weather_capture.py
+++ b/data/weather_capture.py
@@ -30,7 +30,7 @@ try:
driver.get('https://www.weather.go.kr/w/weather/forecast/short-term.do#dong/4148026200/37.73208578534846/126.79463099866948')
- wait = WebDriverWait(driver, 20)
+ wait = WebDriverWait(driver, 25)
# 첫 번째 탭 클릭 (안전하게 클릭 대기)
tab_button = wait.until(EC.element_to_be_clickable(