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
This commit is contained in:
Nicki Křížek 2026-05-25 12:23:03 +00:00
parent 0226bddae4
commit 81c1105125

View file

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