From: Nicki Křížek Date: Mon, 25 May 2026 12:23:03 +0000 (+0000) Subject: Fix mypy var-annotated error on FEATURE_VARS X-Git-Tag: v9.21.23~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81c110512526315adca459dd6ed53f0a7d4e8294;p=thirdparty%2Fbind9.git 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 --- diff --git a/bin/tests/system/isctest/vars/features.py b/bin/tests/system/isctest/vars/features.py index 3ebb0863a84..40982802afc 100644 --- a/bin/tests/system/isctest/vars/features.py +++ b/bin/tests/system/isctest/vars/features.py @@ -33,7 +33,7 @@ FEATURES = { "ZLIB": "--with-zlib", } -FEATURE_VARS = {} +FEATURE_VARS: dict[str, str] = {} def feature_test(feature):