src/eric7/CondaInterface/Conda.py

branch
eric7
changeset 9413
80c06d472826
parent 9278
36448ca469c2
child 9462
e65379fdbd97
diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/CondaInterface/Conda.py
--- a/src/eric7/CondaInterface/Conda.py	Tue Oct 18 16:05:20 2022 +0200
+++ b/src/eric7/CondaInterface/Conda.py	Tue Oct 18 16:06:21 2022 +0200
@@ -14,10 +14,9 @@
 from PyQt6.QtCore import pyqtSignal, QObject, QProcess, QCoreApplication
 from PyQt6.QtWidgets import QDialog
 
-from EricWidgets import EricMessageBox
+from eric7.EricWidgets import EricMessageBox
 
-import Globals
-import Preferences
+from eric7 import Globals, Preferences
 
 from . import rootPrefix, condaVersion
 from .CondaExecDialog import CondaExecDialog
@@ -498,7 +497,9 @@
             raise RuntimeError("One of 'name' or 'prefix' must be given.")
 
         if packages:
-            from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog
+            from eric7.UI.DeleteFilesConfirmationDialog import (
+                DeleteFilesConfirmationDialog,
+            )
 
             dlg = DeleteFilesConfirmationDialog(
                 self.parent(),

eric ide

mercurial