From 1df9b6e97d4e6e025dc1f67fbf0b646c4b8b5472 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 8 Aug 2025 22:48:19 +0200 Subject: [PATCH] Remote: set default for commance_prefix --- 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 21bcf6773..1894cf0ab 100644 --- a/pkgs/clan-cli/clan_lib/ssh/remote.py +++ b/pkgs/clan-cli/clan_lib/ssh/remote.py @@ -32,7 +32,7 @@ NO_OUTPUT_TIMEOUT = 20 @dataclass(frozen=True) class Remote: address: str - command_prefix: str | None + command_prefix: str | None = None user: str = "root" port: int | None = None private_key: Path | None = None