diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-28 10:51:08 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-08-29 23:32:43 +0300 |
commit | 14b245762721461d5326b2015d9f6da444d4128e (patch) | |
tree | bc8833a5e0bd3b5981fdb4865ed0b36ad9c61f15 | |
parent | ff7d86d05f0022a74845fda721bc22dda08cbb15 (diff) | |
download | meson-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__.py | 2 |
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 |