Skip to content

Commit f83079b

Browse files
committed
Update IPythonHandler ref to JupyterHandler
1 parent 440719a commit f83079b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter_server/gateway/handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import logging
66
import mimetypes
77

8-
from ..base.handlers import APIHandler, IPythonHandler
8+
from ..base.handlers import APIHandler, JupyterHandler
99
from ..utils import url_path_join
1010

1111
from tornado import gen, web
@@ -25,7 +25,7 @@
2525
GATEWAY_WS_PING_INTERVAL_SECS = int(os.getenv('GATEWAY_WS_PING_INTERVAL_SECS', 30))
2626

2727

28-
class WebSocketChannelsHandler(WebSocketHandler, IPythonHandler):
28+
class WebSocketChannelsHandler(WebSocketHandler, JupyterHandler):
2929

3030
session = None
3131
gateway = None

0 commit comments

Comments
 (0)