1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 11:52:36 +01:00

wa: Pylint Fixes for Travis

Pylint has trouble using imports from the distutils module in
virtualenvs so we need to explicitly ignore these imports.
This commit is contained in:
Marc Bonnici
2018-07-10 10:34:22 +01:00
committed by setrofim
parent e8b0d42758
commit 791d9496a7
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ else:
from io import BytesIO as StringIO
# pylint: disable=wrong-import-position,unused-import
from itertools import chain, cycle
from distutils.spawn import find_executable
from distutils.spawn import find_executable # pylint: disable=no-name-in-module, import-error
import yaml
from dateutil import tz