PyInstallerInterface/PyInstallerCleanupDialog.py

branch
eric7
changeset 46
ccd14067e6a2
parent 43
01ce3d6f7a07
child 53
415055c7aa74
--- a/PyInstallerInterface/PyInstallerCleanupDialog.py	Thu Dec 30 11:55:51 2021 +0100
+++ b/PyInstallerInterface/PyInstallerCleanupDialog.py	Wed Sep 21 16:45:00 2022 +0200
@@ -16,34 +16,35 @@
     """
     Class implementing a dialog to select the cleanup action.
     """
+
     BuildPath = "build"
     DistPath = "dist"
-    
+
     def __init__(self, parent=None):
         """
         Constructor
-        
+
         @param parent reference to the parent widget
         @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
-        
+
         msh = self.minimumSizeHint()
         self.resize(max(self.width(), msh.width()), msh.height())
-    
+
     def getDirectories(self):
         """
         Public method to get the project relative directories to be cleaned.
-        
+
         @return list of directories to be removed
         @rtype list of str
         """
         dirs = []
-        
+
         if self.buildButton.isChecked() or self.bothButton.isChecked():
             dirs.append(PyInstallerCleanupDialog.BuildPath)
         if self.distButton.isChecked() or self.bothButton.isChecked():
             dirs.append(PyInstallerCleanupDialog.DistPath)
-        
+
         return dirs

eric ide

mercurial