fix: add future annotations for Python 3.9 compatibility

`dict | None` syntax requires Python 3.10+. Adding
`from __future__ import annotations` fixes collection on 3.9.
This commit is contained in:
Alpamys 2026-03-26 10:50:46 +05:00
parent 0ebe59ae00
commit 67adbff558
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,8 @@ catching issues that in-process CliRunner misses:
- exit code propagation through the OS shell
"""
from __future__ import annotations
import json
import os
import subprocess