diff options
author | Matt Clay <mclay@redhat.com> | 2021-08-11 22:18:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 22:18:40 +0200 |
commit | a5b062617643682e6556c6fa114d101095273dca (patch) | |
tree | 542f43dc6127383c60738963a4da323b2a35dc79 /hacking/test-module.py | |
parent | Clean up unit tests to prepare for pylint update. (#75473) (diff) | |
download | ansible-a5b062617643682e6556c6fa114d101095273dca.tar.xz ansible-a5b062617643682e6556c6fa114d101095273dca.zip |
Cleanup hacking scripts to prepare for pylint update. (#75474)
* Use generator in get_recent_coverage_runs.py
* Use from import in test-module.py
Diffstat (limited to 'hacking/test-module.py')
-rwxr-xr-x | hacking/test-module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/test-module.py b/hacking/test-module.py index e954883cae..6cdda7c426 100755 --- a/hacking/test-module.py +++ b/hacking/test-module.py @@ -44,7 +44,7 @@ import ansible.utils.vars as utils_vars from ansible.parsing.dataloader import DataLoader from ansible.parsing.utils.jsonify import jsonify from ansible.parsing.splitter import parse_kv -import ansible.executor.module_common as module_common +from ansible.executor import module_common import ansible.constants as C from ansible.module_utils._text import to_native, to_text from ansible.template import Templar |