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)
| 23077 | |
| 23078 | |
| 23079 | def 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 | |
| 23090 | def user_settings_silent_on_error(silent_on_error=False): |
nothing calls this directly
no test coverage detected