Skip to content

Commit b5fb434

Browse files
committed
Private import
1 parent af9f6e9 commit b5fb434

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conan/internal/runner/ssh.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ def _write_message(self, msg, fg=None, bg=None, newline=True):
265265

266266

267267
class RemoteConnection:
268-
from paramiko.client import SSHClient
269-
def __init__(self, client: SSHClient, logger: SSHOutput):
270-
self.client = client
268+
def __init__(self, client, logger: SSHOutput):
269+
from paramiko.client import SSHClient
270+
self.client: SSHClient = client
271271
self.logger = logger
272272

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

0 commit comments

Comments
 (0)