Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py

changeset 1131
7781e396c903
parent 945
8cd4d08fa9f6
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
27 Constructor 27 Constructor
28 28
29 @param dictionary with the statistical data 29 @param dictionary with the statistical data
30 @param parent reference to the parent widget (QWidget) 30 @param parent reference to the parent widget (QWidget)
31 """ 31 """
32 QDialog.__init__(self, parent) 32 super().__init__(parent)
33 self.setupUi(self) 33 self.setupUi(self)
34 34
35 stats = statistics.copy() 35 stats = statistics.copy()
36 filesCount = stats["_FilesCount"] 36 filesCount = stats["_FilesCount"]
37 filesIssues = stats["_FilesIssues"] 37 filesIssues = stats["_FilesIssues"]

eric ide

mercurial