You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
537 B
16 lines
537 B
"""Manager to read and modify frontend config data in JSON files.
|
|
"""
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
from traitlets.config.manager import BaseJSONConfigManager
|
|
from jupyter_core.paths import jupyter_config_dir
|
|
from traitlets import Unicode
|
|
|
|
class ConfigManager(BaseJSONConfigManager):
|
|
"""Config Manager used for storing notebook frontend config"""
|
|
|
|
config_dir = Unicode(config=True)
|
|
def _config_dir_default(self):
|
|
return jupyter_config_dir()
|