Skip to content

Commit

Permalink
Private import
Browse files Browse the repository at this point in the history
  • Loading branch information
perseoGI committed Nov 22, 2024
1 parent af9f6e9 commit b5fb434
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conan/internal/runner/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,9 @@ def _write_message(self, msg, fg=None, bg=None, newline=True):


class RemoteConnection:
from paramiko.client import SSHClient
def __init__(self, client: SSHClient, logger: SSHOutput):
self.client = client
def __init__(self, client, logger: SSHOutput):
from paramiko.client import SSHClient
self.client: SSHClient = client
self.logger = logger

def put(self, src: str, dst: str) -> None:
Expand Down

0 comments on commit b5fb434

Please sign in to comment.