Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fdf4d61

Browse files
committed
To remove pep8 warnings
This commit remove the pep8 warning from this file
1 parent 5a50fd5 commit fdf4d61

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/misc/multiprocess.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,10 @@ def main():
7676
for ii in range(10):
7777
pl.plot()
7878
time.sleep(0.5)
79-
try: input = raw_input
80-
except NameError: pass
79+
try:
80+
input = raw_input
81+
except NameError:
82+
pass
8183
input('press Enter...')
8284
pl.plot(finished=True)
8385

0 commit comments

Comments
 (0)