From 96b1e629699fcb18b62c65ec9fb68df092ed3b47 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Wed, 16 Sep 2026 13:31:26 +0300 Subject: [PATCH] fix: remote_ops::run uses T_OS_RUN_INPUT --- src/remote_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote_ops.py b/src/remote_ops.py index a780ce5..3bb07a1 100644 --- a/src/remote_ops.py +++ b/src/remote_ops.py @@ -739,7 +739,7 @@ def run( text: typing.Optional[bool] = None, encoding: typing.Optional[str] = None, shell: bool = False, - input: typing.Optional[OsOperations.T_INPUT] = None, + input: typing.Optional[T_OS_RUN_INPUT] = None, stdin: typing.Optional[T_OS_IO_ID] = subprocess.PIPE, stdout: typing.Optional[T_OS_IO_ID] = subprocess.PIPE, stderr: typing.Optional[T_OS_IO_ID] = subprocess.PIPE,