Skip to content

Commit 015d559

Browse files
committed
Fix cythonized API
1 parent 85463f9 commit 015d559

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

exec_helpers/ssh_auth.pyx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ cdef class SSHAuth:
137137
bint log = True,
138138
*,
139139
sock: typing.Optional[typing.Union[paramiko.ProxyCommand, paramiko.Channel, socket.socket]] = None,
140-
bint compress = False,
141140
) -> None:
142141
"""Connect SSH client object using credentials.
143142

@@ -151,8 +150,6 @@ cdef class SSHAuth:
151150
:type log: bool
152151
:param sock: socket for connection. Useful for ssh proxies support
153152
:type sock: typing.Optional[typing.Union[paramiko.ProxyCommand, paramiko.Channel, socket.socket]]
154-
:param compress: use SSH compression
155-
:type compress: bool
156153
:raises PasswordRequiredException: No password has been set, but required.
157154
:raises AuthenticationException: Authentication failed.
158155
"""
@@ -172,7 +169,6 @@ cdef class SSHAuth:
172169
username=self.username,
173170
password=self.password,
174171
key_filename=self.key_filename,
175-
compress=compress,
176172
**kwargs,
177173
)
178174
if index != self.key_index:

0 commit comments

Comments
 (0)