From 7d99b418ada8887d2bd4c5592bfd3e3989dda145 Mon Sep 17 00:00:00 2001 From: "Maarten A. Breddels" Date: Mon, 21 Oct 2019 15:49:35 +0200 Subject: [PATCH] fix: --help needed reference to ServerApp --- voila/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/voila/app.py b/voila/app.py index 9f90b4b45..c27b9e211 100644 --- a/voila/app.py +++ b/voila/app.py @@ -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 @@ -104,7 +105,7 @@ class Voila(ExtensionApp): "enable_nbextensions": "Voila.enable_nbextensions", } - classes = [VoilaExecutePreprocessor, VoilaExporter, VoilaCSSPreprocessor] + classes = [VoilaExecutePreprocessor, VoilaExporter, VoilaCSSPreprocessor, ServerApp] template = Unicode( "default",