src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/generalHardcodedPassword.py

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10169
0f70a4ef4592
--- 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.
 

eric ide

mercurial