From 49d01f5ec659cc8265408d9c5b8ed5ac6bf77ea7 Mon Sep 17 00:00:00 2001 From: RTAkland Date: Sun, 12 Dec 2021 14:47:51 +0800 Subject: [PATCH] feat: changed something --- QWeather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QWeather.py b/QWeather.py index b33f279..bde1fce 100644 --- a/QWeather.py +++ b/QWeather.py @@ -570,7 +570,7 @@ def read_excel(kw: str): data_records = df.to_dict(orient='split') for i in data_records['data']: if kw in str(i): - logger.info(f'{index_count}|{i[0]}-{i[2]}-{i[4]}-{i[6]}') + logger.info(f' {index_count} | {i[2]}-{i[4]}-{i[6]}') city = [index_count, i[0], i[1], i[2], i[3], i[4], i[5], i[6], i[7], i[8], i[9]] index_count += 1 city_list.append(city)