auto-sync: 2026-05-03 10:46:29

This commit is contained in:
cfdaily
2026-05-03 10:46:29 +08:00
parent 2ae9b6100c
commit f099ecbdd5
+2 -1
View File
@@ -165,7 +165,8 @@ def get_daily_last_date(code: str) -> str:
try:
df = pd.read_parquet(fpath, columns=["date"])
if not df.empty:
return str(df["date"].max())[:10]
val = df["date"].max()
return str(val)[:10]
except Exception:
pass
return ""