mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
Standardize args/kwargs on connection plugins.
This commit is contained in:
parent
d5d26bab9b
commit
3d25b4a7c0
4 changed files with 4 additions and 4 deletions
|
@ -32,7 +32,7 @@ from ansible import utils
|
|||
class Connection(object):
|
||||
''' ssh based connections '''
|
||||
|
||||
def __init__(self, runner, host, port, user, password, private_key_file):
|
||||
def __init__(self, runner, host, port, user, password, private_key_file, *args, **kwargs):
|
||||
self.runner = runner
|
||||
self.host = host
|
||||
self.port = port
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue