5 |
5 |
6 """ |
6 """ |
7 Module implementing the MicroPython configuration page. |
7 Module implementing the MicroPython configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from EricWidgets.EricPathPicker import EricPathPickerModes |
10 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
11 |
11 |
12 from .ConfigurationPageBase import ConfigurationPageBase |
12 from .ConfigurationPageBase import ConfigurationPageBase |
13 from .Ui_MicroPythonPage import Ui_MicroPythonPage |
13 from .Ui_MicroPythonPage import Ui_MicroPythonPage |
14 |
14 |
15 import Preferences |
15 from eric7 import Preferences, Utilities |
16 import Utilities |
16 |
17 |
17 from eric7.MicroPython.MicroPythonWidget import AnsiColorSchemes |
18 from MicroPython.MicroPythonWidget import AnsiColorSchemes |
|
19 |
18 |
20 |
19 |
21 class MicroPythonPage(ConfigurationPageBase, Ui_MicroPythonPage): |
20 class MicroPythonPage(ConfigurationPageBase, Ui_MicroPythonPage): |
22 """ |
21 """ |
23 Class implementing the MicroPython configuration page. |
22 Class implementing the MicroPython configuration page. |