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
Instead of using execute() in nbconvert, we could use async_execute() and make it run until complete ourselves.
The problem is that execute() calls run_sync(), which creates an event loop the first time, and next time uses nest_asyncio, but it doesn't have to be (we could just get the current event loop). I think we should have a global option to use nest_asyncio or not.
This comes with an issue in pyppeteer: pyppeteer/pyppeteer#99
How could we avoid using
nest_asyncio
fornbconvert --execute
?The text was updated successfully, but these errors were encountered: