src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py

branch
eric7
changeset 10341
3fdffd9cc21d
parent 10304
ff7d3d6b952d
child 10439
21c28b0f9e41
diff -r 548b4c7f410e -r 3fdffd9cc21d src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py
--- a/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py	Fri Nov 24 14:59:26 2023 +0100
+++ b/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py	Sat Nov 25 18:19:21 2023 +0100
@@ -506,11 +506,13 @@
 
         @param fn filename of the checked file
         @type str
-        @param problems dictionary with the keys 'error', 'py_warnings' and
-            'warnings' which hold a list containing details about the error or
-            warnings (file name, line number, column, codestring (only at syntax
-            errors), message)
-        @type dict
+        @param problems list of dictionaries with the keys 'error', 'py_warnings' and
+            'warnings' which contain a tuple with details about the syntax error or a
+            list of tuples with details about Python warnings and PyFlakes warnings.
+            Each tuple contains the file name, line number, column, code string (only
+            for syntax errors), the message and an optional list with arguments for
+            the message.
+        @type list of dict
         """
         if self.__finished:
             return

eric ide

mercurial