Skip to content

Commit 284c938

Browse files
authored
set default config dir name (#504)
`default` is not a kwarg of the traitlet constructor (default_value is) The result was a warning on every jupyter server startup that tag metadata was being stored, but this is deprecated. The default value was *not* being set.
1 parent 6bf5914 commit 284c938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/services/config/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ConfigManager(LoggingConfigurable):
1515
"""Config Manager used for storing frontend config"""
1616

1717
config_dir_name = Unicode(
18-
default="serverconfig",
18+
"serverconfig",
1919
help="""Name of the config directory."""
2020
).tag(config=True)
2121

0 commit comments

Comments
 (0)