Skip to content

Commit

Permalink
Add missing append in delayed best practices example (#9202)
Browse files Browse the repository at this point in the history
  • Loading branch information
beduncs committed Jun 21, 2022
1 parent b7bbdf9 commit 0820983
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/delayed-best-practices.rst
Expand Up @@ -158,6 +158,7 @@ find good places to break up a computation.
| data = load(filename) | data = load(filename) |
| data = process(data) | data = process(data) |
| result = save(data) | result = save(data) |
| results.append(result) | results.append(result) |
| | |
| return results | return results |
| | |
Expand Down

0 comments on commit 0820983

Please sign in to comment.