You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by gi...@apache.org on 2020/12/29 13:09:55 UTC

[buildstream] 01/02: deb.py: Make pylint stop complaining about arpy

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch soft-arpy-dependency
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit d0b8b33f68da196d73c6a553b44cd6afbbe95196
Author: Tristan Maat <tr...@codethink.co.uk>
AuthorDate: Tue Mar 27 16:01:25 2018 +0100

    deb.py: Make pylint stop complaining about arpy
---
 buildstream/plugins/sources/deb.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildstream/plugins/sources/deb.py b/buildstream/plugins/sources/deb.py
index eaf24d9..9d630cb 100644
--- a/buildstream/plugins/sources/deb.py
+++ b/buildstream/plugins/sources/deb.py
@@ -46,7 +46,7 @@
 
 import tarfile
 from contextlib import contextmanager, ExitStack
-import arpy
+import arpy                                       # pylint: disable=import-error
 
 from .tar import TarSource