mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-27 12:13:20 -04:00
[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:
commit
04127edcda
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ FEATURES = {
|
|||
"ZLIB": "--with-zlib",
|
||||
}
|
||||
|
||||
FEATURE_VARS = {}
|
||||
FEATURE_VARS: dict[str, str] = {}
|
||||
|
||||
|
||||
def feature_test(feature):
|
||||
|
|
|
|||
Loading…
Reference in a new issue