Skip to content

Commit

Permalink
Fix LocalChannel.execute_wait docstring on reporting errors (#3655)
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford authored Oct 24, 2024
1 parent 87069e1 commit 6f1dde6
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 6f1dde6

Please sign in to comment.