23 @param recentApps list of recently entered applications |
23 @param recentApps list of recently entered applications |
24 @type list of str |
24 @type list of str |
25 @param parent reference to the parent widget |
25 @param parent reference to the parent widget |
26 @type QWidget |
26 @type QWidget |
27 """ |
27 """ |
28 super(DjangoMakeMigrationsDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.applicationsComboBox.addItems(recentApps) |
31 self.applicationsComboBox.addItems(recentApps) |
32 |
32 |
33 def getData(self): |
33 def getData(self): |