Skip to content

Commit f1df254

Browse files
authored
Merge pull request #237 from datalayer-contrib/open_browser-hotfix
[HOTFIX] open_browser should be a primitive, not a trait
2 parents e7405ee + 5c864b2 commit f1df254

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

jupyter_server/extension/application.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,8 @@ def static_url_prefix(self):
206206
help=_("""Handlers appended to the server.""")
207207
).tag(config=True)
208208

209-
open_browser = Bool(True,
210-
help=_("""Whether to open in a browser after starting.
211-
The specific browser used is platform dependent and
212-
determined by the python standard library `webbrowser`
213-
module, unless it is overridden using the --browser
214-
(ServerApp.browser) configuration option.
215-
""")).tag(config=True)
209+
# Whether to open in a browser after starting.
210+
open_browser = True
216211

217212
def _config_file_name_default(self):
218213
"""The default config file name."""

0 commit comments

Comments
 (0)