Fixed lint failures

This commit is contained in:
Dmitry Kuzmenko 2019-08-16 22:11:02 +03:00
parent c1efae673a
commit 612191c9fe
No known key found for this signature in database
GPG key ID: 4C7CAD30C95651DA
3 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,7 @@ Set up the Salt multimaster test suite
'''
# Import Python libs
from __future__ import absolute_import, print_function
import copy
import os
import stat

View file

@ -42,7 +42,7 @@ from tests.support.paths import ScriptPathMixin, INTEGRATION_TEST_DIR, CODE_DIR,
# Import 3rd-party libs
from salt.ext import six
from salt.ext.six.moves import cStringIO # pylint: disable=import-error
from salt.ext.six.moves import cStringIO, range # pylint: disable=import-error
STATE_FUNCTION_RUNNING_RE = re.compile(
r'''The function (?:"|')(?P<state_func>.*)(?:"|') is running as PID '''

View file

@ -215,7 +215,7 @@ RUNTIME_VARS = RuntimeVars(
TMP_SYNDIC_MASTER_CONF_DIR=paths.TMP_SYNDIC_MASTER_CONF_DIR,
TMP_SYNDIC_MINION_CONF_DIR=paths.TMP_SYNDIC_MINION_CONF_DIR,
TMP_MM_CONF_DIR=paths.TMP_MM_CONF_DIR,
TMP_MM_SUB_CONF_DIR = paths.TMP_MM_SUB_CONF_DIR,
TMP_MM_SUB_CONF_DIR=paths.TMP_MM_SUB_CONF_DIR,
TMP_SCRIPT_DIR=paths.TMP_SCRIPT_DIR,
TMP_STATE_TREE=paths.TMP_STATE_TREE,
TMP_PILLAR_TREE=paths.TMP_PILLAR_TREE,