Skip to content

Commit 5be5aab

Browse files
Add script_dir to launcher base class
1 parent b441d13 commit 5be5aab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

parsl/launchers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, debug: bool = True):
1111
self.debug = debug
1212

1313
@abstractmethod
14-
def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int) -> str:
14+
def __call__(self, command: str, tasks_per_node: int, nodes_per_block: int, script_dir: str = "") -> str:
1515
""" Wraps the command with the Launcher calls.
1616
"""
1717
pass

0 commit comments

Comments
 (0)