Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 16, 2024
1 parent fb207f1 commit 5daa0fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion kernel_gateway/notebook_http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
from ..base.handlers import default_handlers as default_base_handlers
from ..services.kernels.pool import ManagedKernelPool
from .swagger.handlers import SwaggerSpecHandler
from .handlers import NotebookAPIHandler, parameterize_path, NotebookDownloadHandler
from .request_utils import parameterize_path
from .handlers import NotebookAPIHandler, NotebookDownloadHandler
from jupyter_server.utils import url_path_join
from traitlets import Bool, Unicode, Dict, default
from traitlets.config.configurable import LoggingConfigurable
Expand Down
1 change: 0 additions & 1 deletion kernel_gateway/notebook_http/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from functools import partial
from .errors import UnsupportedMethodError, CodeExecutionError


class NotebookAPIHandler(
TokenAuthorizationMixin, CORSMixin, JSONErrorsMixin, tornado.web.RequestHandler
):
Expand Down

0 comments on commit 5daa0fc

Please sign in to comment.