Type hints
Type hints MAY be used but are not required. Python 3.9 compatibility MUST be maintained — use from __future__ import annotations or typing module forms (e.g., list[str] requires 3.9+, Optional[str] works everywhere).
Type hints MAY be used but are not required. Python 3.9 compatibility MUST be maintained — use from __future__ import annotations or typing module forms (e.g., list[str] requires 3.9+, Optional[str] works everywhere).
| Version | Date | Author | Summary |
|---|---|---|---|
| 1.0.0 | 2026-03-27 | Mike Fullerton | Initial creation |