--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/djangoSqlInjection.py Thu May 25 11:12:05 2023 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/djangoSqlInjection.py Thu May 25 19:51:47 2023 +0200 @@ -52,7 +52,7 @@ return kwargs -def checkDjangoExtraUsed(reportError, context, config): +def checkDjangoExtraUsed(reportError, context, config): # noqa: U100 """ Function to check for potential SQL injection on extra function. @@ -110,7 +110,7 @@ ) -def checkDjangoRawSqlUsed(reportError, context, config): +def checkDjangoRawSqlUsed(reportError, context, config): # noqa: U100 """ Function to check for potential SQL injection on RawSQL function.