From 024fcbaa8a960d3a3e8ab6e44ef6e21a38263f9e Mon Sep 17 00:00:00 2001 From: Feda Curic Date: Tue, 14 Jan 2025 09:38:07 +0100 Subject: [PATCH] Fix bug in docstring of ForwardModelStep --- src/ert/config/forward_model_step.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ert/config/forward_model_step.py b/src/ert/config/forward_model_step.py index fd631be67c6..693cc08d292 100644 --- a/src/ert/config/forward_model_step.py +++ b/src/ert/config/forward_model_step.py @@ -104,9 +104,9 @@ class ForwardModelStep: Attributes: executable: The name of the executable to be run - stdin_file: File where this forward model step's stdout is written - stdout_file: File where this forward model step's stderr is written - stderr_file: File where this forward model step's stdin is written + stdin_file: File where this forward model step's stdin is written + stdout_file: File where this forward model step's stdout is written + stderr_file: File where this forward model step's stderr is written target_file: Name of file expected to be produced after the forward model step is executed successfully. This file is used for the legacy ERT queue driver, and may be deprecated.