mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
15 lines
434 B
Python
15 lines
434 B
Python
"""Manager to read and modify frontend config data in JSON files.
|
|
"""
|
|
# Copyright (c) IPython Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
import os
|
|
|
|
from IPython.config.manager import BaseJSONConfigManager
|
|
|
|
class ConfigManager(BaseJSONConfigManager):
|
|
"""Config Manager use for storin Javascript side config"""
|
|
|
|
def _config_dir(self):
|
|
return os.path.join(self.profile_dir, 'nbconfig')
|