[9.20] fix: nil: 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

Backport of MR !12086

Merge branch 'backport-nicki/fix-isctest-vars-mypy-annotation-9.20' into 'bind-9.20'

See merge request isc-projects/bind9!12088
This commit is contained in:
Nicki Křížek 2026-05-25 15:57:47 +02:00
commit 04127edcda

View file

@ -35,7 +35,7 @@ FEATURES = {
"ZLIB": "--with-zlib",
}
FEATURE_VARS = {}
FEATURE_VARS: dict[str, str] = {}
def feature_test(feature):