From 67adbff5581835f828b00edb97573f5b05a036ac Mon Sep 17 00:00:00 2001 From: Alpamys Date: Thu, 26 Mar 2026 10:50:46 +0500 Subject: [PATCH] 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. --- tests/test_cli_subprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_cli_subprocess.py b/tests/test_cli_subprocess.py index 14ab492..f2fb8ef 100644 --- a/tests/test_cli_subprocess.py +++ b/tests/test_cli_subprocess.py @@ -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