Skip to content

Commit e2fa576

Browse files
committed
Fix missing default value in ssh overload
Signed-off-by: Gaëtan Lehmann <[email protected]>
1 parent 369374b commit e2fa576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/host.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def ssh(self, cmd: Union[str, List[str]], *, check: bool = True, simple_output:
7474
@overload
7575
def ssh(self, cmd: Union[str, List[str]], *, check: bool = True, simple_output: Literal[False],
7676
suppress_fingerprint_warnings: bool = True, background: Literal[False] = False,
77-
decode: bool) -> commands.SSHResult:
77+
decode: bool = True) -> commands.SSHResult:
7878
...
7979

8080
@overload

0 commit comments

Comments
 (0)