src/eric7/Preferences/ConfigurationPages/CondaPage.py

branch
eric7
changeset 9482
a2bc06a54d9d
parent 9473
3f23dbf37dbe
child 9576
be9f8e7e42e0
equal deleted inserted replaced
9481:0b936ff1bbb9 9482:a2bc06a54d9d
5 5
6 """ 6 """
7 Module implementing the conda configuration page. 7 Module implementing the conda configuration page.
8 """ 8 """
9 9
10 from eric7 import Preferences 10 from eric7 import CondaInterface, Preferences
11 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes 11 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes
12 12
13 from .ConfigurationPageBase import ConfigurationPageBase 13 from .ConfigurationPageBase import ConfigurationPageBase
14 from .Ui_CondaPage import Ui_CondaPage 14 from .Ui_CondaPage import Ui_CondaPage
15 15
44 """ 44 """
45 condaExecutable = self.condaExePicker.text() 45 condaExecutable = self.condaExePicker.text()
46 if condaExecutable != self.__condaExecutable: 46 if condaExecutable != self.__condaExecutable:
47 Preferences.setConda("CondaExecutable", condaExecutable) 47 Preferences.setConda("CondaExecutable", condaExecutable)
48 48
49 from eric7 import CondaInterface
50
51 CondaInterface.resetInterface() 49 CondaInterface.resetInterface()
52 50
53 51
54 def create(dlg): 52 def create(dlg):
55 """ 53 """

eric ide

mercurial