Skip to content

Commit

Permalink
Fix app_version (#7061)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Sep 20, 2023
1 parent 6246540 commit 0e62386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0e62386

Please sign in to comment.