eric6/Plugins/PluginWizardSetup.py

changeset 7256
4ef3b78ebb4e
parent 7229
53054eb5b15a
child 7360
9190402e4505
--- a/eric6/Plugins/PluginWizardSetup.py	Sat Sep 21 18:30:02 2019 +0200
+++ b/eric6/Plugins/PluginWizardSetup.py	Sat Sep 21 20:30:56 2019 +0200
@@ -26,10 +26,11 @@
 className = "SetupWizard"
 packageName = "__core__"
 shortDescription = "Wizard for the creation of a setup.py file."
-longDescription = \
-    """This plug-in implements a wizard to generate code for""" \
-    """ a setup.py file. It supports the 'distutils' and 'setuptools'""" \
+longDescription = (
+    """This plug-in implements a wizard to generate code for"""
+    """ a setup.py file. It supports the 'distutils' and 'setuptools'"""
     """ variants."""
+)
 needsRestart = False
 pyqtApi = 2
 # End-of-Header
@@ -113,8 +114,9 @@
         @param editor reference to the current editor
         @return the generated code (string)
         """
-        from WizardPlugins.SetupWizard.SetupWizardDialog import \
+        from WizardPlugins.SetupWizard.SetupWizardDialog import (
             SetupWizardDialog
+        )
         dlg = SetupWizardDialog(None)
         if dlg.exec_() == QDialog.Accepted:
             line, index = editor.getCursorPosition()

eric ide

mercurial