--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/exec.py Wed Apr 10 17:03:56 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/exec.py Wed May 15 10:45:50 2024 +0200 @@ -31,7 +31,7 @@ } -def checkExecUsed(reportError, context, config): # noqa: U100 +def checkExecUsed(reportError, context, _config): """ Function to check for the use of 'exec'. @@ -39,7 +39,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 """ if context.callFunctionNameQual == "exec":