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.
1 parent 9aa92d8 commit 80fe510Copy full SHA for 80fe510
nbclient/client.py
@@ -450,7 +450,7 @@ async def async_setup_kernel(self, **kwargs):
450
if cleanup_kc:
451
await self._async_cleanup_kernel()
452
453
- async def async_execute(self, **kwargs):
+ async def async_execute(self, reset_kc, **kwargs):
454
"""
455
Executes each code cell.
456
@@ -469,7 +469,6 @@ async def async_execute(self, **kwargs):
469
nb : NotebookNode
470
The executed notebook.
471
472
- reset_kc = kwargs.pop('reset_kc', False)
473
if reset_kc and self.km:
474
475
self.reset_execution_trackers()
0 commit comments