diff -r 8413c2429808 -r 64339135bd61 ProjectDjango/DjangoMakeMigrationsDialog.py --- a/ProjectDjango/DjangoMakeMigrationsDialog.py Fri Dec 31 13:17:55 2021 +0100 +++ b/ProjectDjango/DjangoMakeMigrationsDialog.py Wed Sep 21 16:42:20 2022 +0200 @@ -16,10 +16,11 @@ """ Class implementing a dialog to enter the data needed to make migrations. """ + def __init__(self, recentApps, parent=None): """ Constructor - + @param recentApps list of recently entered applications @type list of str @param parent reference to the parent widget @@ -27,13 +28,13 @@ """ super().__init__(parent) self.setupUi(self) - + self.applicationsComboBox.addItems(recentApps) - + def getData(self): """ Public method to get the data for the migration. - + @return tuple containing the application names, a migration name, the dry-run flag, a flag for an empty migration and a flag indicating to fix migration conflicts