Skip to content

Commit

Permalink
Fix LocalChannel.execute_wait docstring on reporting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Oct 24, 2024
1 parent 2b7c7c7 commit 48982ea
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions parsl/channels/local/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,9 @@ def execute_wait(self, cmd, walltime=None, envs={}):
to override the envs set at channel initialization.
Returns:
- retcode : Return code from the execution, -1 on fail
- retcode : Return code from the execution
- stdout : stdout string
- stderr : stderr string
Raises:
None.
'''
current_env = copy.deepcopy(self._envs)
current_env.update(envs)
Expand Down

0 comments on commit 48982ea

Please sign in to comment.