Skip to content

Commit

Permalink
fix: --help needed reference to ServerApp
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Dec 3, 2019
1 parent cad9b75 commit 7d99b41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion voila/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from jupyter_server.base.handlers import path_regex
from jupyter_server.base.handlers import FileFindHandler
from jupyter_server.extension.application import ExtensionApp
from jupyter_server.serverapp import ServerApp
from jupyter_core.paths import jupyter_config_path, jupyter_path

from ipython_genutils.py3compat import getcwd
Expand Down Expand Up @@ -104,7 +105,7 @@ class Voila(ExtensionApp):
"enable_nbextensions": "Voila.enable_nbextensions",
}

classes = [VoilaExecutePreprocessor, VoilaExporter, VoilaCSSPreprocessor]
classes = [VoilaExecutePreprocessor, VoilaExporter, VoilaCSSPreprocessor, ServerApp]

template = Unicode(
"default",
Expand Down

0 comments on commit 7d99b41

Please sign in to comment.