src/eric7/MultiProject/PropertiesDialog.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9653
e67609152c5e
--- a/src/eric7/MultiProject/PropertiesDialog.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/MultiProject/PropertiesDialog.py	Wed Jul 13 14:55:47 2022 +0200
@@ -16,23 +16,24 @@
     """
     Class implementing the multi project properties dialog.
     """
+
     def __init__(self, multiProject, new=True, parent=None):
         """
         Constructor
-        
+
         @param multiProject reference to the multi project object
         @param new flag indicating the generation of a new multi project
         @param parent parent widget of this dialog (QWidget)
         """
         super().__init__(parent)
         self.setupUi(self)
-        
+
         self.multiProject = multiProject
         self.newMultiProject = new
-        
+
         if not new:
             self.descriptionEdit.setPlainText(self.multiProject.description)
-    
+
     def storeData(self):
         """
         Public method to store the entered/modified data.

eric ide

mercurial