7 Module implementing the synchronization host type wizard page. |
7 Module implementing the synchronization host type wizard page. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtWidgets import QWizardPage |
10 from PyQt6.QtWidgets import QWizardPage |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 |
12 from . import SyncGlobals |
14 from . import SyncGlobals |
13 |
|
14 from .Ui_SyncHostTypePage import Ui_SyncHostTypePage |
15 from .Ui_SyncHostTypePage import Ui_SyncHostTypePage |
15 |
|
16 from eric7 import Preferences |
|
17 |
16 |
18 |
17 |
19 class SyncHostTypePage(QWizardPage, Ui_SyncHostTypePage): |
18 class SyncHostTypePage(QWizardPage, Ui_SyncHostTypePage): |
20 """ |
19 """ |
21 Class implementing the synchronization host type wizard page. |
20 Class implementing the synchronization host type wizard page. |