diff --git a/exec_helpers/subprocess_runner.py b/exec_helpers/subprocess_runner.py index 60f851e..a65d915 100644 --- a/exec_helpers/subprocess_runner.py +++ b/exec_helpers/subprocess_runner.py @@ -47,17 +47,17 @@ def interface(self) -> "subprocess.Popen[bytes]": return super(SubprocessExecuteAsyncResult, self).interface # type: ignore @property - def stdin(self) -> typing.Optional[typing.IO[bytes]]: # type: ignore + def stdin(self) -> "typing.Optional[typing.IO[bytes]]": # type: ignore """Override original NamedTuple with proper typing.""" return super(SubprocessExecuteAsyncResult, self).stdin @property - def stderr(self) -> typing.Optional[typing.IO[bytes]]: # type: ignore + def stderr(self) -> "typing.Optional[typing.IO[bytes]]": # type: ignore """Override original NamedTuple with proper typing.""" return super(SubprocessExecuteAsyncResult, self).stderr @property - def stdout(self) -> typing.Optional[typing.IO[bytes]]: # type: ignore + def stdout(self) -> "typing.Optional[typing.IO[bytes]]": # type: ignore """Override original NamedTuple with proper typing.""" return super(SubprocessExecuteAsyncResult, self).stdout