Fixed some code style issues.

Sun, 29 Nov 2020 16:04:25 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 29 Nov 2020 16:04:25 +0100
changeset 36
548dea93941c
parent 35
65a377b7a52c
child 37
1bd8d19a3aa7

Fixed some code style issues.

ChangeLog file | annotate | diff | comparison | revisions
ProjectFlask/FlaskMigrateExtension/MigrateSummaryDialog.py file | annotate | diff | comparison | revisions
--- a/ChangeLog	Sat Nov 28 19:26:34 2020 +0100
+++ b/ChangeLog	Sun Nov 29 16:04:25 2020 +0100
@@ -3,6 +3,7 @@
 Version 1.1.0
 - bug fixes
 - added Spanish translations
+- added support for the flask-migrate extension
 
 Version 1.0.0
 - first stable release
--- 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

eric ide

mercurial