diff -r 2bada76be1a6 -r 6156d9675f62 src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py --- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Mon Feb 19 15:56:51 2024 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Mon Feb 19 19:37:00 2024 +0100 @@ -204,8 +204,8 @@ @param filename source filename @type str - @param source string containing the source code to check - @type str + @param source list of code lines to be checked + @type list of str @param args arguments used by the codeStyleCheck function (list of excludeMessages, includeMessages, repeatMessages, fixCodes, noFixCodes, fixIssues, maxLineLength, maxDocLineLength, blankLines, @@ -323,8 +323,8 @@ @param filename source filename @type str - @param source string containing the source code to check - @type str + @param source list of code lines to be checked + @type list of str @return tuple containing the error dictionary with syntax error details, a statistics dictionary and None or a tuple containing two None and the generated AST tree @@ -366,8 +366,8 @@ @param filename source filename @type str - @param source string containing the source code to check - @type str + @param source list of code lines to be checked + @type list of str @param args arguments used by the codeStyleCheck function (list of excludeMessages, includeMessages, repeatMessages, fixCodes, noFixCodes, fixIssues, maxLineLength, maxDocLineLength, blankLines,