22 |
22 |
23 def __init__(self): |
23 def __init__(self): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 """ |
26 """ |
|
27 from eric7.WebBrowser.VirusTotal.VirusTotalApi import VirusTotalAPI |
|
28 |
27 super().__init__() |
29 super().__init__() |
28 self.setupUi(self) |
30 self.setupUi(self) |
29 self.setObjectName("HelpVirusTotalPage") |
31 self.setObjectName("HelpVirusTotalPage") |
30 |
32 |
31 self.testResultLabel.setHidden(True) |
33 self.testResultLabel.setHidden(True) |
32 |
|
33 from eric7.WebBrowser.VirusTotal.VirusTotalApi import VirusTotalAPI |
|
34 |
34 |
35 self.__vt = VirusTotalAPI(self) |
35 self.__vt = VirusTotalAPI(self) |
36 self.__vt.checkServiceKeyFinished.connect(self.__checkServiceKeyFinished) |
36 self.__vt.checkServiceKeyFinished.connect(self.__checkServiceKeyFinished) |
37 |
37 |
38 # set initial values |
38 # set initial values |