eric6/Plugins/WizardPlugins/EricPluginWizard/Templates.py

changeset 7258
aff39db4dacc
parent 7229
53054eb5b15a
child 7360
9190402e4505
--- 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

eric ide

mercurial