mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
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:
parent
0226bddae4
commit
81c1105125
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ FEATURES = {
|
|||
"ZLIB": "--with-zlib",
|
||||
}
|
||||
|
||||
FEATURE_VARS = {}
|
||||
FEATURE_VARS: dict[str, str] = {}
|
||||
|
||||
|
||||
def feature_test(feature):
|
||||
|
|
|
|||
Loading…
Reference in a new issue