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.2 | 2026-04-09 | Mike Fullerton | Add trigger tags |
| 1.0.1 | 2026-04-09 | Mike Fullerton | Reorganize into use-case directory |
| 1.0.0 | 2026-03-27 | Mike Fullerton | Initial creation |