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 bf15cef commit 6ced051Copy full SHA for 6ced051
jupyter_server/gateway/gateway_client.py
@@ -18,6 +18,7 @@
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,
@@ -40,9 +41,6 @@
40
41
STATUS_CODE_KEY = "status_code"
42
MESSAGE_KEY = "msg"
43
-if ty.TYPE_CHECKING:
44
- from tornado.httputil import HTTPHeaders
45
-
46
47
class GatewayTokenRenewerMeta(ABCMeta, type(LoggingConfigurable)): # type: ignore[misc]
48
"""The metaclass necessary for proper ABC behavior in a Configurable."""
0 commit comments