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