Fixed a code style issue in Mikhails changes.

Sat, 20 Jul 2019 15:03:03 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 20 Jul 2019 15:03:03 +0200
changeset 7074
7da5a5a14469
parent 7073
e86027967f5c
child 7075
e22ca9d9ac5f

Fixed a code style issue in Mikhails changes.

eric6.e4p file | annotate | diff | comparison | revisions
eric6/DebugClients/Python/DebugClientBase.py file | annotate | diff | comparison | revisions
--- a/eric6.e4p	Sun Jul 14 17:00:44 2019 -0400
+++ b/eric6.e4p	Sat Jul 20 15:03:03 2019 +0200
@@ -2290,14 +2290,14 @@
     <Other>docs/THANKS</Other>
     <Other>docs/changelog</Other>
     <Other>eric6.e4p</Other>
+    <Other>eric6/APIs/Python/zope-2.10.7.api</Other>
+    <Other>eric6/APIs/Python/zope-2.11.2.api</Other>
+    <Other>eric6/APIs/Python/zope-3.3.1.api</Other>
     <Other>eric6/APIs/Python3/PyQt4.bas</Other>
     <Other>eric6/APIs/Python3/PyQt5.bas</Other>
     <Other>eric6/APIs/Python3/QScintilla2.bas</Other>
     <Other>eric6/APIs/Python3/eric6.api</Other>
     <Other>eric6/APIs/Python3/eric6.bas</Other>
-    <Other>eric6/APIs/Python/zope-2.10.7.api</Other>
-    <Other>eric6/APIs/Python/zope-2.11.2.api</Other>
-    <Other>eric6/APIs/Python/zope-3.3.1.api</Other>
     <Other>eric6/APIs/QSS/qss.api</Other>
     <Other>eric6/APIs/Ruby/Ruby-1.8.7.api</Other>
     <Other>eric6/APIs/Ruby/Ruby-1.8.7.bas</Other>
@@ -2929,6 +2929,19 @@
               </dict>
             </value>
             <key>
+              <string>CommentedCodeChecker</string>
+            </key>
+            <value>
+              <dict>
+                <key>
+                  <string>Aggressive</string>
+                </key>
+                <value>
+                  <bool>False</bool>
+                </value>
+              </dict>
+            </value>
+            <key>
               <string>CopyrightAuthor</string>
             </key>
             <value>
@@ -2956,7 +2969,7 @@
               <string>ExcludeMessages</string>
             </key>
             <value>
-              <string>C101, E265, E266, E305, E402, M201, M811, M834, N802, N803, N807, N808, N821, W293, W504</string>
+              <string>C101, E265, E266, E305, E402, M201, M811, M834, M841, M891, N802, N803, N807, N808, N821, W293, W504</string>
             </value>
             <key>
               <string>FixCodes</string>
--- a/eric6/DebugClients/Python/DebugClientBase.py	Sun Jul 14 17:00:44 2019 -0400
+++ b/eric6/DebugClients/Python/DebugClientBase.py	Sat Jul 20 15:03:03 2019 +0200
@@ -823,7 +823,8 @@
             try:
                 import unittest
                 testLoader = unittest.TestLoader()
-                test = testLoader.discover(discoveryStart, top_level_dir=top_level_dir)
+                test = testLoader.discover(
+                    discoveryStart, top_level_dir=top_level_dir)
                 if hasattr(testLoader, "errors") and \
                    bool(testLoader.errors):
                     self.sendJsonCommand("ResponseUTDiscover", {
@@ -875,7 +876,8 @@
                         self.test = testLoader.loadTestsFromNames(
                             params["testcases"])
                     else:
-                        self.test = testLoader.discover(discoveryStart, top_level_dir=top_level_dir)
+                        self.test = testLoader.discover(
+                            discoveryStart, top_level_dir=top_level_dir)
                 else:
                     if params["filename"]:
                         utModule = imp.load_source(

eric ide

mercurial