File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 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
1515 " PT018" , # Assertion should be broken down into multiple parts
1616 " RUF00" , # Ambiguous unicode character and other rules
1717 " S101" , # Use of `assert` detected -- DO NOT FIX
18- " S105" , # Possible hardcoded password: 'password'
1918 " S113" , # Probable use of requests call without timeout -- FIX ME
2019 " S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes -- FIX ME
2120 " SLF001" , # Private member accessed: `_Iterator` -- FIX ME
Original file line number Diff line number Diff line change 4343
4444def login_using_recaptcha (request ):
4545 # Enter your recaptcha secret key here
46- secret_key = "secretKey"
46+ secret_key = "secretKey" # noqa: S105
4747 url = "https://www.google.com/recaptcha/api/siteverify"
4848
4949 # when method is not POST, direct user to login page
You can’t perform that action at this time.
0 commit comments