MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / user_settings_write_new_dictionary

Function user_settings_write_new_dictionary

PySimpleGUI/PySimpleGUI.py:23079–23087  ·  view source on GitHub ↗

Writes a specified dictionary to the currently defined settings filename. :param settings_dict: The dictionary to be written to the currently defined settings file :type settings_dict: (dict)

(settings_dict)

Source from the content-addressed store, hash-verified

23077
23078
23079def user_settings_write_new_dictionary(settings_dict):
23080 """
23081 Writes a specified dictionary to the currently defined settings filename.
23082
23083 :param settings_dict: The dictionary to be written to the currently defined settings file
23084 :type settings_dict: (dict)
23085 """
23086 settings = UserSettings._default_for_function_interface
23087 settings.write_new_dictionary(settings_dict)
23088
23089
23090def user_settings_silent_on_error(silent_on_error=False):

Callers

nothing calls this directly

Calls 1

write_new_dictionaryMethod · 0.80

Tested by

no test coverage detected