--- a/eric6/Plugins/PluginEricapi.py Sat Sep 21 18:30:02 2019 +0200 +++ b/eric6/Plugins/PluginEricapi.py Sat Sep 21 20:30:56 2019 +0200 @@ -31,9 +31,11 @@ className = "EricapiPlugin" packageName = "__core__" shortDescription = "Show the Ericapi dialogs." -longDescription = """This plugin implements the Ericapi dialogs.""" \ - """ Ericapi is used to generate a QScintilla API file for Python and""" \ +longDescription = ( + """This plugin implements the Ericapi dialogs.""" + """ Ericapi is used to generate a QScintilla API file for Python and""" """ Ruby projects.""" +) pyqtApi = 2 # End-Of-Header @@ -147,8 +149,9 @@ """ Private slot to perform the eric6_api api generation. """ - from DocumentationPlugins.Ericapi.EricapiConfigDialog import \ + from DocumentationPlugins.Ericapi.EricapiConfigDialog import ( EricapiConfigDialog + ) eolTranslation = { '\r': 'cr', '\n': 'lf', @@ -167,8 +170,9 @@ "--eol={0}".format(eolTranslation[project.getEolString()])) # now do the call - from DocumentationPlugins.Ericapi.EricapiExecDialog import \ + from DocumentationPlugins.Ericapi.EricapiExecDialog import ( EricapiExecDialog + ) dia = EricapiExecDialog("Ericapi") res = dia.start(args, project.ppath) if res: