diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-11-10 11:44:21 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-19 21:07:37 +0200 |
commit | a33acd31dad99be9124022d6293bacaa9d2045fb (patch) | |
tree | cbbf1382666c1246f5d7825a1bed465874ce4dea /run_unittests.py | |
parent | d118e3ad4c21946dc3fc204f6649c424eedabb90 (diff) | |
download | meson-a33acd31dad99be9124022d6293bacaa9d2045fb.zip meson-a33acd31dad99be9124022d6293bacaa9d2045fb.tar.gz meson-a33acd31dad99be9124022d6293bacaa9d2045fb.tar.bz2 |
Fix flake8 'imported but unused' reports
$ flake8 | grep F401
./run_unittests.py:43:1: F401 'mesonbuild.mesonlib.is_linux' imported but unused
./mesonbuild/compilers/c.py:32:1: F401 '.compilers.CompilerType' imported but unused
./mesonbuild/compilers/cpp.py:23:1: F401 '.compilers.CompilerType' imported but unused
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index e149ded..bf912f2 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -42,7 +42,7 @@ import mesonbuild.modules.gnome from mesonbuild.interpreter import Interpreter, ObjectHolder from mesonbuild.mesonlib import ( is_windows, is_osx, is_cygwin, is_dragonflybsd, is_openbsd, is_haiku, - is_linux, windows_proof_rmtree, python_command, version_compare, + windows_proof_rmtree, python_command, version_compare, BuildDirLock, Version ) from mesonbuild.environment import detect_ninja |