Skip to content

Commit b2fba6c

Browse files
author
Dave Berenbaum
authored
fix InteractiveSSHClient _passphrases attr (#374)
1 parent dbed388 commit b2fba6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scmrepo/git/backend/dulwich/asyncssh_vendor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class InteractiveSSHClient(SSHClient):
143143

144144
def __init__(self, *args, **kwargs):
145145
super(*args, **kwargs)
146-
_passphrases: dict[str, str] = {}
146+
self._passphrases: dict[str, str] = {}
147147

148148
def connection_made(self, conn: "SSHClientConnection") -> None:
149149
self._conn = conn

0 commit comments

Comments
 (0)