diff -r 5ea038882dd6 -r c1a2ff7e3575 src/eric7/Plugins/PluginWizardQMessageBox.py --- a/src/eric7/Plugins/PluginWizardQMessageBox.py Tue Nov 21 11:42:45 2023 +0100 +++ b/src/eric7/Plugins/PluginWizardQMessageBox.py Wed Nov 22 17:19:10 2023 +0100 @@ -107,11 +107,9 @@ @param editor reference to the current editor @return the generated code (string) """ - from eric7.Plugins.WizardPlugins.MessageBoxWizard.MessageBoxWizardDialog import ( # __IGNORE_WARNING__ - MessageBoxWizardDialog, - ) + from eric7.Plugins.WizardPlugins.MessageBoxWizard import MessageBoxWizardDialog - dlg = MessageBoxWizardDialog(None) + dlg = MessageBoxWizardDialog.MessageBoxWizardDialog(None) if dlg.exec() == QDialog.DialogCode.Accepted: line, index = editor.getCursorPosition() indLevel = editor.indentation(line) // editor.indentationWidth()