Commit b0b7486
cclauss
multiprocessing.set_start_method() --> mp.set_start_method()
line 12 does __import multiprocessing as mp__ so we must align to that name.
flake8 testing of https://github.com/matplotlib/matplotlib on Python 3.6.3
$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
```
./examples/misc/multiprocess_sgskip.py:105:9: F821 undefined name 'multiprocessing'
multiprocessing.set_start_method("forkserver")
^
1 F821 undefined name 'multiprocessing'
1
```1 parent 2465e60 commit b0b7486
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
105 | | - | |
| 105 | + | |
106 | 106 | | |
0 commit comments