Skip to content

Commit 45132b0

Browse files
committed
Link to GitHub for references to other packages
1 parent 2d737bd commit 45132b0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

jupyter_server_proxy/standalone/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from __future__ import annotations # For Python 3.8 compatibility
1+
from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
22

33
import argparse
44
import logging

jupyter_server_proxy/standalone/activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
async def notify_activity():
1111
"""
1212
Regularly notify JupyterHub of activity.
13-
See `jupyrehub/singleuser/extensions#L396`
13+
See https://github.com/jupyterhub/jupyterhub/blob/4.x/jupyterhub/singleuser/extension.py#L389
1414
"""
1515

1616
client = httpclient.AsyncHTTPClient()

jupyter_server_proxy/standalone/proxy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from __future__ import annotations # For Python 3.8 compatibility
1+
from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
22

33
import os
44
import re
@@ -81,7 +81,7 @@ def get_timeout(self):
8181

8282

8383
def configure_ssl():
84-
# See jupyter_server/serverapp:init_webapp
84+
# See https://github.com/jupyter-server/jupyter_server/blob/v2.0.0/jupyter_server/serverapp.py#L2053-L2073
8585
keyfile = os.environ.get("JUPYTERHUB_SSL_KEYFILE", "")
8686
certfile = os.environ.get("JUPYTERHUB_SSL_CERTFILE", "")
8787
client_ca = os.environ.get("JUPYTERHUB_SSL_CLIENT_CA", "")

0 commit comments

Comments
 (0)