Skip to content

Commit

Permalink
iterative_smoother_update function signature should reflect tuple of …
Browse files Browse the repository at this point in the history
…two returned
  • Loading branch information
Blunde1 committed Dec 1, 2023
1 parent baa919c commit 7918ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/analysis/_es_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ def iterative_smoother_update(
progress_callback: Optional[Callable[[AnalysisEvent], None]] = None,
log_path: Optional[Path] = None,
global_scaling: float = 1.0,
) -> Union[SmootherSnapshot, ies.SIES]:
) -> Tuple[SmootherSnapshot, ies.SIES]:
if not progress_callback:
progress_callback = noop_progress_callback
if not rng:
Expand Down

0 comments on commit 7918ce3

Please sign in to comment.