aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-08-28 10:51:08 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2022-08-29 23:32:43 +0300
commit14b245762721461d5326b2015d9f6da444d4128e (patch)
treebc8833a5e0bd3b5981fdb4865ed0b36ad9c61f15
parentff7d86d05f0022a74845fda721bc22dda08cbb15 (diff)
downloadmeson-14b245762721461d5326b2015d9f6da444d4128e.zip
meson-14b245762721461d5326b2015d9f6da444d4128e.tar.gz
meson-14b245762721461d5326b2015d9f6da444d4128e.tar.bz2
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.
-rw-r--r--mesonbuild/interpreter/primitives/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/interpreter/primitives/__init__.py b/mesonbuild/interpreter/primitives/__init__.py
index 5bbd959..aebef41 100644
--- a/mesonbuild/interpreter/primitives/__init__.py
+++ b/mesonbuild/interpreter/primitives/__init__.py
@@ -12,6 +12,8 @@ __all__ = [
'MesonVersionStringHolder',
'DependencyVariableString',
'DependencyVariableStringHolder',
+ 'OptionString',
+ 'OptionStringHolder',
]
from .array import ArrayHolder