mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Trivial fix: make PyDev happy (imports).
This commit is contained in:
parent
7ff1679007
commit
06e99ee75e
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
|||
import sys
|
||||
import getpass
|
||||
|
||||
import ansible.runner
|
||||
from ansible.runner import Runner
|
||||
import ansible.constants as C
|
||||
from ansible import utils
|
||||
from ansible import errors
|
||||
|
@ -84,7 +84,7 @@ class Cli(object):
|
|||
if options.tree:
|
||||
utils.prepare_writeable_dir(options.tree)
|
||||
|
||||
runner = ansible.runner.Runner(
|
||||
runner = Runner(
|
||||
module_name=options.module_name, module_path=options.module_path,
|
||||
module_args=options.module_args,
|
||||
remote_user=options.remote_user, remote_pass=sshpass,
|
||||
|
|
Loading…
Reference in a new issue