mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
Enable ruff S105 rule (#11343)
* Enable ruff S105 rule * Update web_programming/recaptcha_verification.py --------- Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
@ -43,7 +43,7 @@ except ImportError:
|
||||
|
||||
def login_using_recaptcha(request):
|
||||
# Enter your recaptcha secret key here
|
||||
secret_key = "secretKey"
|
||||
secret_key = "secretKey" # noqa: S105
|
||||
url = "https://www.google.com/recaptcha/api/siteverify"
|
||||
|
||||
# when method is not POST, direct user to login page
|
||||
|
Reference in New Issue
Block a user