diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/Plugins/WizardPlugins/SetupWizard/SetupCfgUtilities.py --- a/src/eric7/Plugins/WizardPlugins/SetupWizard/SetupCfgUtilities.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/WizardPlugins/SetupWizard/SetupCfgUtilities.py Wed Jul 13 14:55:47 2022 +0200 @@ -21,7 +21,7 @@ def _bool2string(value): """ Function to convert a bool value to a setup.cfg string. - + @param value bool value to be converted @type bool @return setup.cfg string @@ -33,7 +33,7 @@ def _list2string(value): """ Function to convert a list value to a setup.cfg string. - + @param value list value to be converted @type list @return setup.cfg string @@ -41,14 +41,14 @@ """ if value: return "\n{0}".format("\n".join(sorted(filter(None, value)))) - + return "" def _dict2list(value): """ Function to convert a dict value to a setup.cfg list string. - + @param value dict value to be converted @type dict @yield setup.cfg string @@ -61,7 +61,7 @@ def _dict2string(value): """ Function to convert a dict value to a setup.cfg string. - + @param value dict value to be converted @type dict @return setup.cfg string @@ -73,7 +73,7 @@ def toString(value): """ Function to convert a value to a setup.cfg string. - + @param value value to be converted @type bool, list, set, tuple or dict @return setup.cfg string