--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/certificateValidation.py Tue Sep 13 19:46:19 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/certificateValidation.py Tue Sep 13 20:00:55 2022 +0200 @@ -42,10 +42,10 @@ @param config dictionary with configuration data @type dict """ - http_verbs = ("get", "options", "head", "post", "put", "patch", "delete") + httpVerbs = ("get", "options", "head", "post", "put", "patch", "delete") if ( "requests" in context.callFunctionNameQual - and context.callFunctionName in http_verbs + and context.callFunctionName in httpVerbs and context.checkCallArgValue("verify", "False") ): reportError(