diff -r d595f6f9cbf8 -r 4ef3b78ebb4e eric6/Plugins/PluginWizardEricPlugin.py --- a/eric6/Plugins/PluginWizardEricPlugin.py Sat Sep 21 18:30:02 2019 +0200 +++ b/eric6/Plugins/PluginWizardEricPlugin.py Sat Sep 21 20:30:56 2019 +0200 @@ -28,9 +28,10 @@ className = "WizardEricPluginWizard" packageName = "__core__" shortDescription = "Wizard for the creation of an eric plug-in file." -longDescription = \ - """This plug-in implements a wizard to generate code for""" \ +longDescription = ( + """This plug-in implements a wizard to generate code for""" """ an eric plug-in main script file.""" +) needsRestart = False pyqtApi = 2 # End-of-Header @@ -115,8 +116,9 @@ @return generated code (string), the plug-in package name (string) and a flag indicating success (boolean) """ - from WizardPlugins.EricPluginWizard.PluginWizardDialog import \ + from WizardPlugins.EricPluginWizard.PluginWizardDialog import ( PluginWizardDialog + ) dlg = PluginWizardDialog(None) if dlg.exec_() == QDialog.Accepted: return (dlg.getCode(), dlg.packageName(), True)