pylint import-error bug workaround for distutils

This commit is contained in:
Carlos Meza 2018-02-18 20:22:05 -08:00
parent febb7e8a1d
commit b47b55172b

View file

@ -12,6 +12,8 @@ class CheckExternalCommands(Task):
import re
import os
import logging
# https://github.com/PyCQA/pylint/issues/73
# pylint: disable=no-name-in-module,import-error,useless-suppression
from distutils.spawn import find_executable
missing_packages = []
log = logging.getLogger(__name__)