Helpviewer/Sync/SyncAssistantDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2403
e3d7a861547c
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a wizard dialog to enter the synchronization data. 7 Module implementing a wizard dialog to enter the synchronization data.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtGui import QWizard 12 from PyQt4.QtGui import QWizard
11 13
12 import UI.PixmapCache 14 import UI.PixmapCache
13 import Globals 15 import Globals
21 """ 23 """
22 Constructor 24 Constructor
23 25
24 @param parent reference to the parent widget (QWidget) 26 @param parent reference to the parent widget (QWidget)
25 """ 27 """
26 super().__init__(parent) 28 super(SyncAssistantDialog, self).__init__(parent)
27 29
28 from . import SyncGlobals 30 from . import SyncGlobals
29 31
30 from .SyncDataPage import SyncDataPage 32 from .SyncDataPage import SyncDataPage
31 from .SyncEncryptionPage import SyncEncryptionPage 33 from .SyncEncryptionPage import SyncEncryptionPage

eric ide

mercurial