Show More
@@ -376,7 +376,7 class FileConfigLoader(ConfigLoader): | |||
|
376 | 376 | self.full_filename = filefind(self.filename, self.path) |
|
377 | 377 | |
|
378 | 378 | class JSONFileConfigLoader(FileConfigLoader): |
|
379 |
"""A J |
|
|
379 | """A JSON file loader for config""" | |
|
380 | 380 | |
|
381 | 381 | def load_config(self): |
|
382 | 382 | """Load the config from a file and return it as a Config object.""" |
@@ -34,7 +34,7 def recursive_update(target, new): | |||
|
34 | 34 | target[k] = v |
|
35 | 35 | |
|
36 | 36 | |
|
37 |
class BaseJ |
|
|
37 | class BaseJSONConfigManager(LoggingConfigurable): | |
|
38 | 38 | """General config manager |
|
39 | 39 | |
|
40 | 40 | Deals with persisting/storing config in a json file |
@@ -5,9 +5,9 | |||
|
5 | 5 | |
|
6 | 6 | import os |
|
7 | 7 | |
|
8 |
from IPython.config.manager import BaseJ |
|
|
8 | from IPython.config.manager import BaseJSONConfigManager | |
|
9 | 9 | |
|
10 |
class ConfigManager(BaseJ |
|
|
10 | class ConfigManager(BaseJSONConfigManager): | |
|
11 | 11 | """Config Manager use for storin Javascript side config""" |
|
12 | 12 | |
|
13 | 13 | def _config_dir(self): |
General Comments 0
You need to be logged in to leave comments.
Login now