From e075b46becfee7fc186091923de5c4c6ab6c52b5 Mon Sep 17 00:00:00 2001 From: daya0576 Date: Sun, 28 Mar 2021 10:13:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E6=A1=88=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- telegram_bot/intergration/weather/models/he_weather_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram_bot/intergration/weather/models/he_weather_model.py b/telegram_bot/intergration/weather/models/he_weather_model.py index 9e60400..c96291c 100644 --- a/telegram_bot/intergration/weather/models/he_weather_model.py +++ b/telegram_bot/intergration/weather/models/he_weather_model.py @@ -47,7 +47,7 @@ def w_day_emoji(self): return "☁️" def __str__(self) -> str: - d_str = f"白天{self.w_day_emoji}{self.w_day}({self.temp_min}°~{self.temp_max}°)" + d_str = f"{self.w_day}{self.w_day_emoji}({self.temp_min}°~{self.temp_max}°)" if self.w_night != self.w_day: d_str += f",夜晚{self.w_night}"