Satisfy pylint

This commit is contained in:
Mark Gomersbach 2018-11-03 09:21:41 +01:00
parent a2838dbd05
commit 5cd9741269
No known key found for this signature in database
GPG Key ID: B5171AF93EC64F16
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import salt.ext.six as six
# Workaround for 'reload' builtin of py2.7
if six.PY3:
from importlib import reload # pylint: disable=W0611
from importlib import reload # pylint: disable=W0611
# Import third party libs
HAS_PORTAGE = False

View File

@ -19,7 +19,7 @@ import salt.ext.six as six
# Workaround for 'reload' builtin of py2.7
if six.PY3:
from importlib import reload # pylint: disable=W0611
from importlib import reload # pylint: disable=W0611
log = logging.getLogger(__name__)