src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py

branch
eric7
changeset 10373
093dcebe5ecb
parent 10170
6cf1ee737d8f
child 10439
21c28b0f9e41
diff -r 1444b4bee64b -r 093dcebe5ecb src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py
--- 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,

eric ide

mercurial