This commit is contained in:
Jonathan Frederic 2016-02-26 15:22:05 -08:00
parent b5c4e98fe8
commit 29279e21e7
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ from .nbextensions import (
)
from traitlets import Bool
from traitlets.config.manager import BaseJSONConfigManager, recursive_update
from traitlets.config.manager import BaseJSONConfigManager
# ------------------------------------------------------------------------------
# Public API

View File

@ -26,11 +26,11 @@ class ConfigManager(LoggingConfigurable):
def set(self, section_name, data):
"""Set the config only to the user's config."""
self._write_config_manager.set(section_name, data)
self.write_config_manager.set(section_name, data)
def update(self, section_name, new_data):
"""Update the config only to the user's config."""
self._write_config_manager.update(section_name, new_data)
self.write_config_manager.update(section_name, new_data)
# Private API