You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "C:/Users/nlab/Desktop/sima/examples/workflow.py", line 144, in
<module>
show(block=True)
File
"C:\Users\nlab\Downloads\WinPython-64bit-2.7.9.5\python-2.7.9.amd64\lib\site-packages\matplotlib\pyplot.py",
line 155, in show
return _show(*args, **kw)
TypeError: show() got an unexpected keyword argument 'block'
removing (block=True) allows it to complete without error
The text was updated successfully, but these errors were encountered:
Not all matplotlib backends support block=True (such as Spyder's iPython console). The script should work fine when run with the python interpreter (python workflow.py), or as you said, you can remove the line.
removing
(block=True)
allows it to complete without errorThe text was updated successfully, but these errors were encountered: