mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-17 12:39:54 +08:00
Fix typo
This commit is contained in:
parent
b5c4e98fe8
commit
29279e21e7
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user