Skip to content

Commit 65027f3

Browse files
authored
Restore back older export for workspaces (#229)
1 parent 609240f commit 65027f3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

jupyterlab_server/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from .handlers import add_handlers, LabHandler, LabConfig
77
from .translation_utils import translator
88
from .workspaces_app import WorkspaceExportApp, WorkspaceImportApp, WorkspaceListApp
9+
from .workspaces_handler import slugify, WORKSPACE_EXTENSION
910
from ._version import __version__
1011

1112
__all__ = [
@@ -16,7 +17,9 @@
1617
'LabServerApp',
1718
'LicensesApp',
1819
'SETTINGS_EXTENSION',
20+
'slugify',
1921
'translator',
22+
'WORKSPACE_EXTENSION',
2023
'WorkspaceExportApp',
2124
'WorkspaceImportApp',
2225
'WorkspaceListApp'

jupyterlab_server/workspaces_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""""""
1+
"""A workspace management CLI"""
22
import json
33
import sys
44
from pathlib import Path

0 commit comments

Comments
 (0)