eric6/UI/SplashScreen.py

changeset 8218
7c09585bd960
parent 8207
d359172d11be
--- a/eric6/UI/SplashScreen.py	Sat Apr 10 18:31:17 2021 +0200
+++ b/eric6/UI/SplashScreen.py	Sat Apr 10 18:38:27 2021 +0200
@@ -32,7 +32,7 @@
             Qt.AlignmentFlag.AlignRight |
             Qt.AlignmentFlag.AlignAbsolute
         )
-        super(SplashScreen, self).__init__(ericPic)
+        super().__init__(ericPic)
         self.show()
         QApplication.flush()
         
@@ -43,7 +43,7 @@
         @param msg message to be shown (string)
         """
         logging.debug(msg)
-        super(SplashScreen, self).showMessage(
+        super().showMessage(
             msg, self.labelAlignment, QColor(Qt.GlobalColor.white))
         QApplication.processEvents()
         
@@ -51,7 +51,7 @@
         """
         Public method to clear the message shown.
         """
-        super(SplashScreen, self).clearMessage()
+        super().clearMessage()
         QApplication.processEvents()
 
 

eric ide

mercurial