ProjectDjango/DjangoDialog.py

changeset 169
b8f263e05c39
parent 168
c6182aab51e9
child 172
ea7980ded4f3
diff -r c6182aab51e9 -r b8f263e05c39 ProjectDjango/DjangoDialog.py
--- a/ProjectDjango/DjangoDialog.py	Wed Dec 30 11:02:06 2020 +0100
+++ b/ProjectDjango/DjangoDialog.py	Sat Apr 24 11:25:03 2021 +0200
@@ -49,7 +49,7 @@
         @keyparam showInput flag indicating to show the input widgets (bool)
         @keyparam parent parent widget (QWidget)
         """
-        super(DjangoDialog, self).__init__(parent)
+        super().__init__(parent)
         self.setupUi(self)
         
         self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
@@ -351,4 +351,4 @@
             evt.accept()
             return
         
-        super(DjangoDialog, self).keyPressEvent(evt)
+        super().keyPressEvent(evt)

eric ide

mercurial