aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/minstall.py
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-10-24 13:49:46 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2018-10-24 19:11:46 +0300
commit93f7b83bf54b2e7e15eaf0df68e209d0f3d8bfd7 (patch)
treec9936867a1ed82337d1ca9c0469ac891c9939089 /mesonbuild/minstall.py
parent5b3192534c198d173b96fee78fbe12a6bef0da43 (diff)
downloadmeson-93f7b83bf54b2e7e15eaf0df68e209d0f3d8bfd7.zip
meson-93f7b83bf54b2e7e15eaf0df68e209d0f3d8bfd7.tar.gz
meson-93f7b83bf54b2e7e15eaf0df68e209d0f3d8bfd7.tar.bz2
Fix flake8 'imported but unused' reports
$ flake8 | grep F401 ./mesonbuild/minstall.py:15:1: F401 'gzip' imported but unused ./mesonbuild/backend/backends.py:26:1: F401 '..compilers.get_macos_dylib_install_name' imported but unused ./mesonbuild/backend/backends.py:29:1: F401 'functools.lru_cache' imported but unused ./mesonbuild/scripts/dist.py:27:1: F401 'mesonbuild.dependencies.ExternalProgram' imported but unused
Diffstat (limited to 'mesonbuild/minstall.py')
-rw-r--r--mesonbuild/minstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py
index 7a2af30..fc25057 100644
--- a/mesonbuild/minstall.py
+++ b/mesonbuild/minstall.py
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import sys, pickle, os, shutil, subprocess, gzip, errno
+import sys, pickle, os, shutil, subprocess, errno
import shlex
from glob import glob
from .scripts import depfixer