diff -r c4d0cac9b5c9 -r aff39db4dacc eric6/Plugins/WizardPlugins/EricPluginWizard/Templates.py --- a/eric6/Plugins/WizardPlugins/EricPluginWizard/Templates.py Sat Sep 21 22:03:03 2019 +0200 +++ b/eric6/Plugins/WizardPlugins/EricPluginWizard/Templates.py Mon Sep 23 19:10:42 2019 +0200 @@ -247,11 +247,11 @@ @rtype list of str """ if language in ["Python3", "Python"]: - apisDir = \\ - os.path.join(os.path.dirname(__file__), "APIs", "Python") + apisDir = os.path.join( + os.path.dirname(__file__), "APIs", "Python") apis = glob.glob(os.path.join(apisDir, '*.api')) - apisDir = \\ - os.path.join(os.path.dirname(__file__), "APIs", "Python3") + apisDir = os.path.join( + os.path.dirname(__file__), "APIs", "Python3") apis.extend(glob.glob(os.path.join(apisDir, '*.api'))) else: apis = [] @@ -259,3 +259,6 @@ ''' + +# +# eflag: noqa = M841