Fix app_version (#7061)

This commit is contained in:
Jeremy Tuloup 2023-09-20 08:48:37 +02:00 committed by GitHub
parent 6246540396
commit 0e62386fc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -231,7 +231,7 @@ class JupyterNotebookApp(NotebookConfigShimMixin, LabServerApp): # type:ignore[
app_name = "Jupyter Notebook" app_name = "Jupyter Notebook"
description = "Jupyter Notebook - A web-based notebook environment for interactive computing" description = "Jupyter Notebook - A web-based notebook environment for interactive computing"
version = version 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 = "/" extension_url = "/"
default_url = Unicode("/tree", config=True, help="The default URL to redirect to from `/`") default_url = Unicode("/tree", config=True, help="The default URL to redirect to from `/`")
file_url_prefix = "/tree" file_url_prefix = "/tree"