32 @param urls list of detected URLs |
32 @param urls list of detected URLs |
33 @type list of dict |
33 @type list of dict |
34 @param parent reference to the parent widget |
34 @param parent reference to the parent widget |
35 @type QWidget |
35 @type QWidget |
36 """ |
36 """ |
37 super(VirusTotalIpReportDialog, self).__init__(parent) |
37 super().__init__(parent) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 self.setWindowFlags(Qt.WindowType.Window) |
39 self.setWindowFlags(Qt.WindowType.Window) |
40 |
40 |
41 self.headerLabel.setText( |
41 self.headerLabel.setText( |
42 self.tr("<b>Report for IP {0}</b>").format(ip)) |
42 self.tr("<b>Report for IP {0}</b>").format(ip)) |