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 6ced051 commit 5523269Copy full SHA for 5523269
jupyter_server/gateway/gateway_client.py
@@ -18,7 +18,6 @@
18
from jupyter_events import EventLogger
19
from tornado import web
20
from tornado.httpclient import AsyncHTTPClient, HTTPClientError, HTTPResponse
21
-from tornado.httputil import HTTPHeaders
22
from traitlets import (
23
Bool,
24
Float,
@@ -35,6 +34,9 @@
35
34
36
from jupyter_server import DEFAULT_EVENTS_SCHEMA_PATH, JUPYTER_SERVER_EVENTS_URI
37
+if ty.TYPE_CHECKING:
38
+ from tornado.httputil import HTTPHeaders
39
+
40
ERROR_STATUS = "error"
41
SUCCESS_STATUS = "success"
42
STATUS_KEY = "status"
0 commit comments