diff options
author | Matt Clay <matt@mystile.com> | 2019-07-11 07:00:34 +0200 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2019-07-11 17:54:13 +0200 |
commit | 86ad4c99bad2abe1d638b61c07eba0995620d899 (patch) | |
tree | 266ed02db31e5852936e9e2c3faa0401c9586efe /test/runner/lib/sanity/pylint.py | |
parent | Updating known_hosts module Docs (#58785) (diff) | |
download | ansible-86ad4c99bad2abe1d638b61c07eba0995620d899.tar.xz ansible-86ad4c99bad2abe1d638b61c07eba0995620d899.zip |
Reorganize util code in ansible-test.
Code in util.py that depends on CommonConfig is now in util_common.py.
Diffstat (limited to 'test/runner/lib/sanity/pylint.py')
-rw-r--r-- | test/runner/lib/sanity/pylint.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/runner/lib/sanity/pylint.py b/test/runner/lib/sanity/pylint.py index de3bd7c1e4..642f3406c1 100644 --- a/test/runner/lib/sanity/pylint.py +++ b/test/runner/lib/sanity/pylint.py @@ -19,13 +19,17 @@ from lib.sanity import ( from lib.util import ( SubprocessError, - run_command, display, read_lines_without_comments, ConfigParser, INSTALL_ROOT, ) +from lib.util_common import ( + intercept_command, + run_command, +) + from lib.executor import ( SUPPORTED_PYTHON_VERSIONS, ) |