Skip to content

Commit 2416f1f

Browse files
committed
fix mypy: ExecHelperTimeoutError is possible only with timeout set
(cherry picked from commit c8e9fdb)
1 parent 4d1fb86 commit 2416f1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exec_helpers/subprocess_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def close_streams() -> None:
172172

173173
wait_err_msg = _log_templates.CMD_WAIT_ERROR.format(result=result, timeout=timeout)
174174
self.logger.debug(wait_err_msg)
175-
raise exceptions.ExecHelperTimeoutError(result=result, timeout=timeout)
175+
raise exceptions.ExecHelperTimeoutError(result=result, timeout=timeout) # type: ignore
176176

177177
def execute_async( # pylint: disable=arguments-differ
178178
self,

0 commit comments

Comments
 (0)