36 @param suffix icon suffix |
36 @param suffix icon suffix |
37 @type str |
37 @type str |
38 @param parent reference to the parent widget |
38 @param parent reference to the parent widget |
39 @type QWidget |
39 @type QWidget |
40 """ |
40 """ |
41 super(DjangoMigrationSelectionDialog, self).__init__(parent) |
41 super().__init__(parent) |
42 self.setupUi(self) |
42 self.setupUi(self) |
43 |
43 |
44 self.__appliedIcon = QIcon(os.path.join( |
44 self.__appliedIcon = QIcon(os.path.join( |
45 os.path.dirname(__file__), "icons", "applied-{0}".format(suffix) |
45 os.path.dirname(__file__), "icons", "applied-{0}".format(suffix) |
46 )) |
46 )) |