MicroPython mpy_network

Mon, 27 Feb 2023 16:55:09 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 27 Feb 2023 16:55:09 +0100
branch
mpy_network
changeset 9817
640b6c23d97b
parent 9816
4aeaf6df7283
child 9820
67597e003373

MicroPython
- fixed some imports in the CircuitPython updater

src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py file | annotate | diff | comparison | revisions
--- a/src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py	Mon Feb 27 16:25:59 2023 +0100
+++ b/src/eric7/MicroPython/Devices/CircuitPythonUpdater/CircuitPythonUpdaterInterface.py	Mon Feb 27 16:55:09 2023 +0100
@@ -391,7 +391,7 @@
 
         These are modules which could be installed on the device.
         """
-        from ..ShowModulesDialog import ShowModulesDialog
+        from eric7.MicroPython.ShowModulesDialog import ShowModulesDialog
 
         with EricOverrideCursor():
             availableModules = circup.get_bundle_versions(circup.get_bundles_list())
@@ -418,7 +418,7 @@
         """
         Private slot to install modules onto the connected device.
         """
-        from ..ShowModulesDialog import ShowModulesDialog
+        from eric7.MicroPython.ShowModulesDialog import ShowModulesDialog
 
         with EricOverrideCursor():
             availableModules = circup.get_bundle_versions(circup.get_bundles_list())

eric ide

mercurial