Skip to content

Commit

Permalink
fix error discovered in Jupyter lab CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sagerb committed Oct 17, 2023
1 parent 7f5c4ff commit 652f7a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import shlex
import subprocess
from urllib.parse import urlparse
from typing import Set, Dict, Tuple
from typing import Set, Dict, Tuple, Any

from jupyter_server.base.handlers import APIHandler
from jupyter_server.utils import url_path_join
Expand All @@ -14,7 +14,7 @@
from tornado.httputil import HTTPServerRequest
from tornado.web import authenticated

base_url = None
base_url: str = ""
EXECUTABLE = "connect-client"

known_ports: Set[int] = set()
Expand Down

0 comments on commit 652f7a3

Please sign in to comment.