2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing HelpVirusTotalPage. | 7 Module implementing HelpVirusTotalPage. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 from PyQt4.QtCore import pyqtSlot | 12 from PyQt4.QtCore import pyqtSlot |
11 | 13 |
12 from .ConfigurationPageBase import ConfigurationPageBase | 14 from .ConfigurationPageBase import ConfigurationPageBase |
13 from .Ui_HelpVirusTotalPage import Ui_HelpVirusTotalPage | 15 from .Ui_HelpVirusTotalPage import Ui_HelpVirusTotalPage |
23 """ | 25 """ |
24 Constructor | 26 Constructor |
25 | 27 |
26 @param parent reference to the parent widget (QWidget) | 28 @param parent reference to the parent widget (QWidget) |
27 """ | 29 """ |
28 super().__init__() | 30 super(HelpVirusTotalPage, self).__init__() |
29 self.setupUi(self) | 31 self.setupUi(self) |
30 self.setObjectName("HelpVirusTotalPage") | 32 self.setObjectName("HelpVirusTotalPage") |
31 | 33 |
32 self.testResultLabel.setHidden(True) | 34 self.testResultLabel.setHidden(True) |
33 | 35 |