From e4066a938de015f5bdf76e385a32be170e260036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Mon, 25 May 2026 12:23:03 +0000 Subject: [PATCH] Fix mypy var-annotated error on FEATURE_VARS Mypy reports 'Need type annotation for "FEATURE_VARS"'; init_features() populates it with str->str entries. Assisted-by: Claude:claude-opus-4-7 (cherry picked from commit 81c110512526315adca459dd6ed53f0a7d4e8294) --- bin/tests/system/isctest/vars/features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/isctest/vars/features.py b/bin/tests/system/isctest/vars/features.py index 79ff9d0137..bca3779da7 100644 --- a/bin/tests/system/isctest/vars/features.py +++ b/bin/tests/system/isctest/vars/features.py @@ -35,7 +35,7 @@ FEATURES = { "ZLIB": "--with-zlib", } -FEATURE_VARS = {} +FEATURE_VARS: dict[str, str] = {} def feature_test(feature):