lib.ec.ssh.AsyncSSH: Declare Caps.Env

AsyncSSH's implementation already supports modifying the execution
environment via env, so declare it to the base class with Caps.Env.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-04-17 16:54:18 +02:00
commit 9575339972

View file

@ -25,7 +25,7 @@ class AsyncSSH(Base):
super().__init__( super().__init__(
uri, uri,
caps=self.Caps.LogOutput | self.Caps.Wd | self.Caps.Interactive, caps=self.Caps.LogOutput | self.Caps.Wd | self.Caps.Interactive | self.Caps.Env,
**kwargs **kwargs
) )