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 6e2411b commit fc1b970Copy full SHA for fc1b970
nbclient/tests/test_client.py
@@ -510,7 +510,14 @@ def test_start_new_kernel_history_file_setting():
510
511
def test_start_new_kernel_client_cleans_up_kernel_on_failure():
512
class FakeClient(KernelClient):
513
- def start_channels(self, *args, **kwargs) -> None:
+ def start_channels(
514
+ self,
515
+ shell: bool = True,
516
+ iopub: bool = True,
517
+ stdin: bool = True,
518
+ hb: bool = True,
519
+ control: bool = True
520
+ ) -> None:
521
raise Exception("Any error")
522
523
def stop_channels(self) -> None:
0 commit comments