Skip to content

Commit

Permalink
Removal of 'task_block' parameter from serveral launcher's docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Harichandra-Prasath committed Sep 12, 2024
1 parent dc7911f commit 331d16c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions parsl/launchers/launchers.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> s
"""
Args:
- command (string): The command string to be launched
- task_block (string) : bash evaluated string.
- fail_on_any: If True, return a nonzero exit code if any worker failed, otherwise zero;
if False, return a nonzero exit code if all workers failed, otherwise zero.
Expand Down Expand Up @@ -131,7 +130,6 @@ def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> s
"""
Args:
- command (string): The command string to be launched
- task_block (string) : bash evaluated string.
"""
task_blocks = tasks_per_node * nodes_per_block
Expand Down Expand Up @@ -208,7 +206,6 @@ def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> s
"""
Args:
- command (string): The command string to be launched
- task_block (string) : bash evaluated string.
"""
task_blocks = tasks_per_node * nodes_per_block
Expand Down Expand Up @@ -263,7 +260,6 @@ def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> s
"""
Args:
- command (string): The command string to be launched
- task_block (string) : bash evaluated string.
"""
task_blocks = tasks_per_node * nodes_per_block
Expand Down Expand Up @@ -311,7 +307,6 @@ def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> s
"""
Args:
- command (string): The command string to be launched
- task_block (string) : bash evaluated string.
"""
task_blocks = tasks_per_node * nodes_per_block
Expand Down Expand Up @@ -363,7 +358,6 @@ def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> s
"""
Args:
- command (string): The command string to be launched
- task_block (string) : bash evaluated string.
"""
task_blocks = tasks_per_node * nodes_per_block
Expand Down

0 comments on commit 331d16c

Please sign in to comment.