51 return self.text(column) < other.text(column) |
51 return self.text(column) < other.text(column) |
52 |
52 |
53 |
53 |
54 class PyProfileDialog(QDialog, Ui_PyProfileDialog): |
54 class PyProfileDialog(QDialog, Ui_PyProfileDialog): |
55 """ |
55 """ |
56 Class implementing a dialog to display the results of a syntax check run. |
56 Class implementing a dialog to display the results of a profiling run. |
57 """ |
57 """ |
58 def __init__(self, parent=None): |
58 def __init__(self, parent=None): |
59 """ |
59 """ |
60 Constructor |
60 Constructor |
61 |
61 |