187f37f8e772071dc5f6cb65a434b44648ca020d
PEP 585 内建泛型 (tuple[str, str], dict[str, int]) 在 Python 3.9 之前不支持。 PEP 563 让所有 type hint 变成字符串, 兼容 Python 3.7+。 错误: 'type' object is not subscriptable 影响: app.py:1184 start_email_scheduler() -> import mailer -> mailer.py:417 修复: mailer.py / app.py 顶部加 from __future__ import annotations
Description
No description provided