Skip to content

Commit 9359b33

Browse files
committed
Use native kernel by default
1 parent 250178f commit 9359b33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter_client/kernelapp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from traitlets import Unicode
88

99
from . import __version__
10-
from .kernelspec import KernelSpecManager
10+
from .kernelspec import KernelSpecManager, NATIVE_KERNEL_NAME
1111
from .manager import KernelManager
1212

1313
class KernelApp(JupyterApp):
@@ -21,7 +21,7 @@ class KernelApp(JupyterApp):
2121
'ip': 'KernelManager.ip',
2222
}
2323

24-
kernel_name = Unicode(
24+
kernel_name = Unicode(NATIVE_KERNEL_NAME,
2525
help = 'The name of a kernel to start'
2626
).tag(config=True)
2727

0 commit comments

Comments
 (0)