eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
diff -r 385f60c94548 -r 7c09585bd960 eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py	Sat Apr 10 18:31:17 2021 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py	Sat Apr 10 18:38:27 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