##// END OF EJS Templates
add import hook for shim packages...
add import hook for shim packages This ensures that submodule imports return the real target module, not a clone that will confuse `is` and `isinstance` checks.

File last commit:

r20867:432981e3
r20990:233a2e54
Show More
manager.py
21 lines | 679 B | text/x-python | PythonLexer
"""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.
from IPython.config.manager import BaseJSONConfigManager
from IPython.utils.path import locate_profile
from IPython.utils.traitlets import Unicode
class ConfigManager(BaseJSONConfigManager):
"""Config Manager used for storing notebook frontend config"""
profile = Unicode('default', config=True)
profile_dir = Unicode(config=True)
def _profile_dir_default(self):
return locate_profile(self.profile)
def _config_dir_default(self):
return self.profile_dir