Returns the current settings dictionary. If you've not setup the filename for the settings, a default one will be used and then read. :return: The current settings dictionary as a dictionary or a nicely formatted string representing it :rtype: (dict or str)
()
| 23099 | |
| 23100 | |
| 23101 | def user_settings(): |
| 23102 | """ |
| 23103 | Returns the current settings dictionary. If you've not setup the filename for the |
| 23104 | settings, a default one will be used and then read. |
| 23105 | :return: The current settings dictionary as a dictionary or a nicely formatted string representing it |
| 23106 | :rtype: (dict or str) |
| 23107 | """ |
| 23108 | settings = UserSettings._default_for_function_interface |
| 23109 | return settings.get_dict() |
| 23110 | |
| 23111 | |
| 23112 | def user_settings_object(): |