From c11ee3b030ab7e5f9097eead3e8bfef32d64e401 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 19 Sep 2023 06:08:28 +0000 Subject: [PATCH] Fix `app_version` --- notebook/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/app.py b/notebook/app.py index 5e9f92c5ae..9cdccadd0f 100644 --- a/notebook/app.py +++ b/notebook/app.py @@ -231,7 +231,7 @@ class JupyterNotebookApp(NotebookConfigShimMixin, LabServerApp): # type:ignore[ app_name = "Jupyter Notebook" description = "Jupyter Notebook - A web-based notebook environment for interactive computing" version = version - app_version = Unicode("", help="The version of the application.").tag(default=version) + app_version = Unicode(version, help="The version of the application.") extension_url = "/" default_url = Unicode("/tree", config=True, help="The default URL to redirect to from `/`") file_url_prefix = "/tree"