Skip to content

Commit

Permalink
Update make_rundir docstring (#3738)
Browse files Browse the repository at this point in the history
# Changed Behaviour

none

## Type of change

- Update to human readable text: Documentation/error messages/comments
  • Loading branch information
benclifford authored Jan 7, 2025
1 parent ce78393 commit 627ffd9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions parsl/dataflow/rundirs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 627ffd9

Please sign in to comment.