Skip to content

Commit 8e4b89a

Browse files
author
Kevin Kirsche
authored
fix: add missing paramiko.win_openssh (#8672)
1 parent 483f0ac commit 8e4b89a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import sys
2+
3+
if sys.platform == "win32":
4+
PIPE_NAME: str
5+
6+
def can_talk_to_agent() -> bool: ...
7+
8+
class OpenSSHAgentConnection:
9+
def __init__(self) -> None: ...
10+
def send(self, data: bytes) -> int: ...
11+
def recv(self, n: int) -> bytes: ...
12+
def close(self) -> None: ...

0 commit comments

Comments
 (0)