flake8: fix warnings for unused imports

This is supposed to expose all primitives together, but to do that we
need to actually "use" each variable in `__all__`, which we... didn't.
Sorry about that.
This commit is contained in:
Eli Schwartz 2022-08-28 10:51:08 -04:00 committed by Jussi Pakkanen
parent ff7d86d05f
commit 14b2457627
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@ __all__ = [
'MesonVersionStringHolder',
'DependencyVariableString',
'DependencyVariableStringHolder',
'OptionString',
'OptionStringHolder',
]
from .array import ArrayHolder