21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param parent reference to the parent widget (QWidget) |
24 @param parent reference to the parent widget (QWidget) |
25 """ |
25 """ |
26 super(SyncAssistantDialog, self).__init__(parent) |
26 super().__init__(parent) |
27 |
27 |
28 from . import SyncGlobals |
28 from . import SyncGlobals |
29 |
29 |
30 from .SyncDataPage import SyncDataPage |
30 from .SyncDataPage import SyncDataPage |
31 from .SyncEncryptionPage import SyncEncryptionPage |
31 from .SyncEncryptionPage import SyncEncryptionPage |