diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/MicroPython/MicroPythonProgressInfoDialog.py --- a/src/eric7/MicroPython/MicroPythonProgressInfoDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/MicroPython/MicroPythonProgressInfoDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -18,21 +18,22 @@ """ Class implementing a dialog to show progress messages. """ + def __init__(self, parent=None): """ Constructor - + @param parent reference to the parent widget @type QWidget """ super().__init__(parent) self.setupUi(self) - + @pyqtSlot(str) def addMessage(self, message): """ Public slot to add a message to the progress display. - + @param message progress information to be shown @type str """