mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Standardize args/kwargs on connection plugins.
This commit is contained in:
@@ -29,7 +29,7 @@ from ansible.callbacks import vvv
|
||||
class Connection(object):
|
||||
''' Local based connections '''
|
||||
|
||||
def __init__(self, runner, host, port, **kwargs):
|
||||
def __init__(self, runner, host, port, *args, **kwargs):
|
||||
self.runner = runner
|
||||
self.host = host
|
||||
# port is unused, since this is local
|
||||
|
||||
Reference in New Issue
Block a user