Skip to content

Commit

Permalink
docs: update python source code in remarks (#4083)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbp committed Jan 10, 2022
1 parent 6e9e7ef commit cdc62c3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions docs/fundamentals/flow/remarks.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ Few cases require to use `spawn` start method for multiprocessing.
```
````


- **Avoid un-picklable objects**

[Here's a list of types that can be pickled in Python](https://docs.python.org/3/library/pickle.html#what-can-be-pickled-and-unpickled). Since `spawn` relies on pickling, we should avoid using code that cannot be pickled.
Expand Down Expand Up @@ -325,7 +326,3 @@ if __name__ == '__main__':
```
````





0 comments on commit cdc62c3

Please sign in to comment.