fix: add missing paramiko.win_openssh (#8672)

This commit is contained in:
Kevin Kirsche
2022-09-03 17:03:10 -04:00
committed by GitHub
parent 483f0ac078
commit 8e4b89a707

View File

@@ -0,0 +1,12 @@
import sys
if sys.platform == "win32":
PIPE_NAME: str
def can_talk_to_agent() -> bool: ...
class OpenSSHAgentConnection:
def __init__(self) -> None: ...
def send(self, data: bytes) -> int: ...
def recv(self, n: int) -> bytes: ...
def close(self) -> None: ...