diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-12-30 14:34:53 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 12:19:32 +0100 |
commit | 63e16fbcc31ed616b713bf83b4b1079ee1b7f617 (patch) | |
tree | fde892586754204cc373ff28ddf9e3b84504c1d1 | |
parent | e1719c5d37c82233c27ae733ab9b1ecbb781a27f (diff) | |
download | meson-63e16fbcc31ed616b713bf83b4b1079ee1b7f617.zip meson-63e16fbcc31ed616b713bf83b4b1079ee1b7f617.tar.gz meson-63e16fbcc31ed616b713bf83b4b1079ee1b7f617.tar.bz2 |
Fixed flake8
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 | ||||
-rw-r--r-- | mesonbuild/mintro.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 1b8c8ec..23da39e 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -29,7 +29,7 @@ from .. import build from .. import mlog from .. import dependencies from .. import compilers -from ..compilers import CompilerArgs, CCompiler, VisualStudioCCompiler, Compiler +from ..compilers import CompilerArgs, CCompiler, VisualStudioCCompiler from ..linkers import ArLinker from ..mesonlib import File, MesonException, OrderedSet from ..mesonlib import get_compiler_for_source, has_path_sep diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index caa6982..63cf7fb 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -480,7 +480,7 @@ def run(options): # Load build data to make sure that the version matches # TODO Find a better solution for this - _ = cdata.load(options.builddir) + cdata.load(options.builddir) results = [] toextract = [] |