Skip to content

Commit

Permalink
Review update
Browse files Browse the repository at this point in the history
  • Loading branch information
datamel committed Jun 16, 2021
1 parent 8f0883c commit 69976de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cylc/flow/pathutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ def get_dirs_to_symlink(
"""Parses symlink dirs to the correct format, ready for symlinking.
Args:
install_target (str): Symlinks to be created on this install target
flow_name (str): full name of the run, e.g. myflow/run1
symlink_conf (dict, optional): Symlink dirs, if sent on the cli.
install_target: Symlinks to be created on this install target
flow_name: full name of the run, e.g. myflow/run1
symlink_conf: Symlink dirs, if sent on the cli.
Defaults to None, in which case global config symlink dirs will
be applied.
Returns:
dirs_to_symlink (Dict[str, str]): [directory: symlink_path]
dirs_to_symlink: [directory: symlink_path]
"""
if symlink_conf is None:
symlink_conf = glbl_cfg().get(['install', 'symlink dirs'])
Expand Down
2 changes: 1 addition & 1 deletion cylc/flow/workflow_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ def install_workflow(
source: Optional[Union[Path, str]] = None,
run_name: Optional[str] = None,
no_run_name: bool = False,
cli_symlink_dirs: Optional[Union[Dict[str, Dict[str, Any]], None]] = None
cli_symlink_dirs: Optional[Dict[str, Dict[str, Any]]] = None
) -> Tuple[Path, Path, str]:
"""Install a workflow, or renew its installation.
Expand Down

0 comments on commit 69976de

Please sign in to comment.