8000 Fix deprecation warning · vors/jupyter-powershell@50328b5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 50328b5

Browse files
committed
Fix deprecation warning
1 parent 5ee5a18 commit 50328b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

powershell_kernel/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from IPython.kernel.zmq.kernelapp import IPKernelApp
1+
from ipykernel.kernelapp import IPKernelApp
22
from powershell_kernel.kernel import PowerShellKernel
33
IPKernelApp.launch_instance(kernel_class=PowerShellKernel)

powershell_kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from IPython.kernel.zmq.kernelbase import Kernel
1+
from ipykernel.kernelbase import Kernel
22

33
from os import unlink, environ
44

0 commit comments

Comments
 (0)
0