From e14e623287709910e1063052f88b8b38e13bc72a Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Tue, 6 Aug 2024 14:54:56 +0000 Subject: [PATCH] Add missing documentation to execute_stage function Refs #2475 --- ush/python/pygfs/task/stage.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ush/python/pygfs/task/stage.py b/ush/python/pygfs/task/stage.py index f5f587adea..e1459fdee0 100644 --- a/ush/python/pygfs/task/stage.py +++ b/ush/python/pygfs/task/stage.py @@ -39,6 +39,15 @@ def __init__(self, config: Dict[str, Any]) -> None: @logit(logger) def execute_stage(self, stage_dict: Dict[str, Any]) -> None: """Perform local staging of initial condition files. + + Parameters + ---------- + stage_dict : Dict[str, Any] + Configuration dictionary + + Returns + ------- + None """ if not os.path.isdir(stage_dict.ROTDIR):