diff -r 65a377b7a52c -r 548dea93941c ProjectFlask/FlaskMigrateExtension/MigrateSummaryDialog.py --- a/ProjectFlask/FlaskMigrateExtension/MigrateSummaryDialog.py Sat Nov 28 19:26:34 2020 +0100 +++ b/ProjectFlask/FlaskMigrateExtension/MigrateSummaryDialog.py Sun Nov 29 16:04:25 2020 +0100 @@ -26,10 +26,10 @@ """ Constructor + @param project reference to the project object + @type Project @param migrateProject reference to the migrate project extension @type MigrateProject - @param project reference to the project object - @type Project @param migrations directory path containing the migrations @type str @param parent reference to the parent widget @@ -155,7 +155,7 @@ @pyqtSlot() def on_upgradeButton_clicked(self): """ - Private slot to upgrade to the selected revision + Private slot to upgrade to the selected revision. """ itm = self.summaryWidget.selectedItems()[0] rev = itm.text(1) @@ -165,7 +165,7 @@ @pyqtSlot() def on_downgradeButton_clicked(self): """ - Private slot to downgrade to the selected revision + Private slot to downgrade to the selected revision. """ itm = self.summaryWidget.selectedItems()[0] rev = itm.text(1) @@ -175,7 +175,7 @@ @pyqtSlot(QAbstractButton) def on_buttonBox_clicked(self, button): """ - Private slot handling a button press of the button box + Private slot handling a button press of the button box. @param button reference to the pressed button @type QAbstractButton