mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Pylint fix for develop
This commit is contained in:
parent
386a5a087c
commit
e256943fd6
@ -20,10 +20,13 @@ import traceback
|
||||
import multiprocessing
|
||||
from random import randint, shuffle
|
||||
|
||||
# Import third party libs
|
||||
# Import Salt Libs
|
||||
# pylint: disable=import-error,no-name-in-module,redefined-builtin
|
||||
import salt.ext.six as six
|
||||
from salt.ext.six.moves import range
|
||||
# pylint: enable=no-name-in-module,redefined-builtin
|
||||
|
||||
# Import third party libs
|
||||
try:
|
||||
import zmq
|
||||
HAS_ZMQ = True
|
||||
|
@ -22,8 +22,11 @@ import integration
|
||||
ensure_in_syspath('../../')
|
||||
|
||||
# Import Salt libs
|
||||
# pylint: disable=import-error,no-name-in-module,redefined-builtin
|
||||
import salt.ext.six as six
|
||||
from salt.ext.six.moves import range
|
||||
from salt.config import minion_config
|
||||
# pylint: enable=no-name-in-module,redefined-builtin
|
||||
|
||||
from salt.loader import LazyLoader, _module_dirs
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user