We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5a8826 commit 8e06c58Copy full SHA for 8e06c58
src/itoolkit/transport/ssh.py
@@ -55,10 +55,13 @@ class SshTransport(XmlServiceTransport):
55
(obj)
56
""" # noqa: E501 See https://github.com/PyCQA/pycodestyle/issues/888
57
58
- def __init__(self, sshclient=None):
+ def __init__(self, sshclient=None, **kwargs):
59
# TODO: allow connection to be materialized from IBM Cloud deployments
60
if not hasattr(sshclient, "exec_command"):
61
raise Exception("An instance of paramiko.SSHClient is required")
62
+
63
+ super(SshTransport, self).__init__(**kwargs)
64
65
self.conn = sshclient
66
67
def call(self, tk):
0 commit comments