File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ lint.ignore = [ # `ruff rule S101` for a description of that rule
15
15
" PT018" , # Assertion should be broken down into multiple parts
16
16
" RUF00" , # Ambiguous unicode character and other rules
17
17
" S101" , # Use of `assert` detected -- DO NOT FIX
18
- " S105" , # Possible hardcoded password: 'password'
19
18
" S113" , # Probable use of requests call without timeout -- FIX ME
20
19
" S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes -- FIX ME
21
20
" SLF001" , # Private member accessed: `_Iterator` -- FIX ME
Original file line number Diff line number Diff line change 43
43
44
44
def login_using_recaptcha (request ):
45
45
# Enter your recaptcha secret key here
46
- secret_key = "secretKey"
46
+ secret_key = "secretKey" # noqa: S105
47
47
url = "https://www.google.com/recaptcha/api/siteverify"
48
48
49
49
# when method is not POST, direct user to login page
You can’t perform that action at this time.
0 commit comments