--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/injectionSql.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/injectionSql.py Sat Apr 20 18:01:36 2024 +0200 @@ -105,7 +105,7 @@ return (False, statement, strReplace) -def checkHardcodedSqlExpressions(reportError, context, config): # noqa: U100 +def checkHardcodedSqlExpressions(reportError, context, _config): """ Function to check for SQL injection. @@ -113,7 +113,7 @@ @type func @param context security context object @type SecurityContext - @param config dictionary with configuration data + @param _config dictionary with configuration data (unused) @type dict """ executeCall, statement, strReplace = _evaluateAst(context.node)