eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py

branch
maintenance
changeset 8273
698ae46f40a4
parent 8218
7c09585bd960
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py	Fri Apr 02 11:59:41 2021 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py	Sat May 01 14:27:20 2021 +0200
@@ -44,7 +44,7 @@
         @param vcs reference to the vcs object
         @param parent reference to the parent widget (QWidget)
         """
-        super(GitStashBrowserDialog, self).__init__(parent)
+        super().__init__(parent)
         self.setupUi(self)
         
         self.buttonBox.button(
@@ -119,7 +119,7 @@
             self.move(self.__position)
         self.__resetUI()
         
-        super(GitStashBrowserDialog, self).show()
+        super().show()
     
     def __resetUI(self):
         """
@@ -456,7 +456,7 @@
             self.intercept = False
             evt.accept()
             return
-        super(GitStashBrowserDialog, self).keyPressEvent(evt)
+        super().keyPressEvent(evt)
     
     def __showPatch(self):
         """

eric ide

mercurial