diff options
| author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-09-13 14:27:38 +0100 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-13 20:33:17 +0300 |
| commit | de7c3cbbc5b763698b220f2129dedfe1f6f392bf (patch) | |
| tree | cc5557bf65875d15ad0861065c8e9350f8c29d25 /test cases | |
| parent | b338add5543b651cb9930230fe1aef893422016b (diff) | |
| download | meson-de7c3cbbc5b763698b220f2129dedfe1f6f392bf.tar.gz | |
Fix flake8 'imported but unused' reports
$ flake8 | grep F401
./mesonbuild/compilers/d.py:19:1: F401 '.compilers.GCC_CYGWIN' imported but unused
./test cases/unit/35 dist script/replacer.py:3:1: F401 'sys' imported but unused
Diffstat (limited to 'test cases')
| -rwxr-xr-x | test cases/unit/35 dist script/replacer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/35 dist script/replacer.py b/test cases/unit/35 dist script/replacer.py index 92bcef0d3..adda365d7 100755 --- a/test cases/unit/35 dist script/replacer.py +++ b/test cases/unit/35 dist script/replacer.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -import os, sys +import os import pathlib source_root = pathlib.Path(os.environ['MESON_DIST_ROOT']) |
