fix: nil: Fix mypy var-annotated error on FEATURE_VARS
Some checks are pending
CodeQL / Analyze (push) Waiting to run
SonarCloud / Build and analyze (push) Waiting to run

Mypy reports 'Need type annotation for "FEATURE_VARS"'; init_features()
populates it with str->str entries.

Assisted-by: Claude:claude-opus-4-7

Merge branch 'nicki/fix-isctest-vars-mypy-annotation' into 'main'

See merge request isc-projects/bind9!12086
This commit is contained in:
Nicki Křížek 2026-05-25 15:03:19 +02:00
commit bb5a9104cf

View file

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