2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the project helper base for Mercurial extension interfaces. | 7 Module implementing the project helper base for Mercurial extension interfaces. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import QObject | 12 from PyQt4.QtCore import QObject |
11 | 13 |
12 | 14 |
13 class HgExtensionProjectHelper(QObject): | 15 class HgExtensionProjectHelper(QObject): |
19 """ | 21 """ |
20 def __init__(self): | 22 def __init__(self): |
21 """ | 23 """ |
22 Constructor | 24 Constructor |
23 """ | 25 """ |
24 super().__init__() | 26 super(HgExtensionProjectHelper, self).__init__() |
25 | 27 |
26 self.actions = [] | 28 self.actions = [] |
27 | 29 |
28 self.initActions() | 30 self.initActions() |
29 | 31 |