From 7ef09343ed285a1b737df22acc2f54c4f7f31263 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Tue, 29 Jul 2025 17:37:50 +0200 Subject: [PATCH] pkgs/clan/lib: Fix documentation of `from_ssh_uri` in the `Remote` class --- pkgs/clan-cli/clan_lib/ssh/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_lib/ssh/remote.py b/pkgs/clan-cli/clan_lib/ssh/remote.py index b7cdb74e4..30d1fa2ce 100644 --- a/pkgs/clan-cli/clan_lib/ssh/remote.py +++ b/pkgs/clan-cli/clan_lib/ssh/remote.py @@ -104,7 +104,7 @@ class Remote: address: str, ) -> "Remote": """ - Parse a deployment address and return a Host object. + Parse a deployment address and return a Remote object. """ return parse_ssh_uri(machine_name=machine_name, address=address)