We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
plt.show()
fig.show()
1 parent d674480 commit 4ceafacCopy full SHA for 4ceafac
src/mplfinance/plotting.py
@@ -866,7 +866,7 @@ def plot( data, **kwargs ):
866
if config['closefig']: # True or 'auto'
867
plt.close(fig)
868
elif not config['returnfig']:
869
- fig.show() # https://stackoverflow.com/a/13361748/1639359
+ plt.show(block=config['block']) # https://stackoverflow.com/a/13361748/1639359
870
if config['closefig'] == True or (config['block'] and config['closefig']):
871
872
0 commit comments