--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/generalHardcodedPassword.py Thu May 25 11:12:05 2023 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/generalHardcodedPassword.py Thu May 25 19:51:47 2023 +0200 @@ -45,7 +45,7 @@ } -def checkHardcodedPasswordAsString(reportError, context, config): +def checkHardcodedPasswordAsString(reportError, context, config): # noqa: U100 """ Function to check for use of hardcoded password strings. @@ -102,7 +102,7 @@ ) -def checkHardcodedPasswordAsFunctionArg(reportError, context, config): +def checkHardcodedPasswordAsFunctionArg(reportError, context, config): # noqa: U100 """ Function to check for use of hard-coded password function arguments. @@ -126,7 +126,7 @@ ) -def checkHardcodedPasswordAsDefault(reportError, context, config): +def checkHardcodedPasswordAsDefault(reportError, context, config): # noqa: U100 """ Function to check for use of hard-coded password argument defaults.