eric6/Plugins/CheckerPlugins/CodeStyleChecker/pycodestyle.py

changeset 7960
e8fc383322f7
parent 7923
91e843545d9a
child 8208
37836fa8e4ea
diff -r 44e15eda6506 -r e8fc383322f7 eric6/Plugins/CheckerPlugins/CodeStyleChecker/pycodestyle.py
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/pycodestyle.py	Tue Jan 05 18:28:31 2021 +0100
+++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/pycodestyle.py	Wed Jan 06 13:47:01 2021 +0100
@@ -52,11 +52,11 @@
 
 #
 # This is a modified version to make the original pycodestyle.py better
-# suitable for being called from within the eric6 IDE. The modifications
+# suitable for being called from within the eric IDE. The modifications
 # are as follows:
 #
 # - made messages translatable via Qt
-# - added code for eric6 integration
+# - added code for eric integration
 #
 # Copyright (c) 2011 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
 #
@@ -2016,7 +2016,7 @@
         self.report_error_args = self.report.error_args
         self.noqa = False
         
-        # added for eric6 integration
+        # added for eric integration
         self.options = options
 
     def report_invalid_syntax(self):
@@ -2146,7 +2146,7 @@
         except (ValueError, SyntaxError, TypeError):
             return self.report_invalid_syntax()
         for name, cls, __ in self._ast_checks:
-            # extended API for eric6 integration
+            # extended API for eric integration
             checker = cls(tree, self.filename, self.options)
             for args in checker.run():
                 lineno = args[0]

eric ide

mercurial