src/eric7/Plugins/VcsPlugins/vcsGit/GitStashDataDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitStashDataDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitStashDataDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -25,7 +25,8 @@
         """
         Constructor
 
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -37,9 +38,10 @@
         """
         Public method to get the user data.
 
-        @return tuple containing the message (string), a flag indicating to
-            keep changes in the staging area (boolean) and an indication to
-            stash untracked and/or ignored files (integer)
+        @return tuple containing the message, a flag indicating to keep changes
+            in the staging area and an indication to stash untracked and/or
+            ignored files
+        @rtype tuple of (str, bool, int)
         """
         if self.noneRadioButton.isChecked():
             untracked = self.NoUntracked

eric ide

mercurial