From 627ffd9b29287d3903600c223f9ef50518a8c197 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Tue, 7 Jan 2025 22:10:43 +0000 Subject: [PATCH] Update make_rundir docstring (#3738) # Changed Behaviour none ## Type of change - Update to human readable text: Documentation/error messages/comments --- parsl/dataflow/rundirs.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/parsl/dataflow/rundirs.py b/parsl/dataflow/rundirs.py index f5ecda6984..141773089e 100644 --- a/parsl/dataflow/rundirs.py +++ b/parsl/dataflow/rundirs.py @@ -6,17 +6,16 @@ def make_rundir(path: str) -> str: - """When a path has not been specified, make the run directory. + """Create a numbered run directory under the specified path. - Creates a rundir with the following hierarchy: - ./runinfo <- Home of all run directories + ./runinfo <- specified path |----000 |----001 <- Directories for each run | .... |----NNN - Kwargs: - - path (str): String path to a specific run dir + Args: + - path (str): String path to root of all rundirs """ try: if not os.path.exists(path):