ProjectDjango/DjangoMakeMigrationsDialog.py

branch
eric7
changeset 180
64339135bd61
parent 175
30cb5e553e7e
child 190
f394b11f9f31
--- 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

eric ide

mercurial