fix: 补充合并后遗漏的 from __future__ import annotations

合并 fix/python314-upgrade 后,部分文件仍使用 Optional/Dict 等旧式类型
但未添加 future annotations 导入,导致运行时 NameError。
This commit is contained in:
fawney19
2026-01-30 13:01:50 +08:00
parent cd1b103223
commit 041a61f89c
9 changed files with 19 additions and 2 deletions

View File

@@ -5,6 +5,8 @@ Vertex AI Service Account 认证服务
Access Token 会被缓存,直到过期前 60 秒才刷新。
"""
from __future__ import annotations
import json
import time
from collections import OrderedDict