Skip to content

Commit

Permalink
fix InteractiveSSHClient _passphrases attr (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Berenbaum authored Aug 5, 2024
1 parent dbed388 commit b2fba6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scmrepo/git/backend/dulwich/asyncssh_vendor.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class InteractiveSSHClient(SSHClient):

def __init__(self, *args, **kwargs):
super(*args, **kwargs)
_passphrases: dict[str, str] = {}
self._passphrases: dict[str, str] = {}

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

0 comments on commit b2fba6c

Please sign in to comment.