--- a/src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py Sun Dec 03 16:44:52 2023 +0100 +++ b/src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py Sun Dec 03 19:46:34 2023 +0100 @@ -265,7 +265,7 @@ """ localBundles = circup.get_bundles_local_dict() dlg = EricListSelectionDialog( - sorted(localBundles.keys()), + sorted(localBundles), title=self.tr("Remove Bundles"), message=self.tr("Select the bundles to be removed:"), checkBoxSelection=True, @@ -613,7 +613,7 @@ modNames[moduleItem.replace(".py", "").lower()] = metadata dlg = EricListSelectionDialog( - sorted(modNames.keys()), + sorted(modNames), title=self.tr("Uninstall Modules"), message=self.tr("Select the modules/packages to be uninstalled:"), checkBoxSelection=True,