2 |
2 |
3 # Copyright (c) 2011 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> |
3 # Copyright (c) 2011 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog showing statistical data for the last PEP 8 run. |
7 Module implementing a dialog showing statistical data for the last code |
|
8 style checker run. |
8 """ |
9 """ |
9 |
10 |
10 from PyQt4.QtCore import Qt, QCoreApplication |
11 from PyQt4.QtCore import Qt, QCoreApplication |
11 from PyQt4.QtGui import QDialog, QTreeWidgetItem |
12 from PyQt4.QtGui import QDialog, QTreeWidgetItem |
12 |
13 |
19 |
20 |
20 |
21 |
21 class Pep8StatisticsDialog(QDialog, Ui_Pep8StatisticsDialog): |
22 class Pep8StatisticsDialog(QDialog, Ui_Pep8StatisticsDialog): |
22 """ |
23 """ |
23 Class implementing a dialog showing statistical data for the last |
24 Class implementing a dialog showing statistical data for the last |
24 PEP 8 run. |
25 code style checker run. |
25 """ |
26 """ |
26 def __init__(self, statistics, parent=None): |
27 def __init__(self, statistics, parent=None): |
27 """ |
28 """ |
28 Constructor |
29 Constructor |
29 |
30 |