[flake8-bandit] request-without-timeout should warn for requests.request (#11548)

## Summary
Update
[S113](https://docs.astral.sh/ruff/rules/request-without-timeout/) to
also warns for missing timeout on when calling `requests.request`
This commit is contained in:
Akshet Pandey 2024-05-28 12:31:12 -04:00 committed by GitHub
parent 16acd4913f
commit 4a305588e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -36,7 +36,6 @@ if TYPE_CHECKING:
Project,
)
# Matches lines that are summaries rather than diagnostics
CHECK_SUMMARY_LINE_RE = re.compile(r"^(Found \d+ error.*)|(.* fixable with .*)$")