[`flake8-bandit`] Fix correct example for `S308` (#21128)

<!--
Thank you for contributing to Ruff/ty! To help us out with reviewing,
please consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title? (Please prefix
with `[ty]` for ty pull
  requests.)
- Does this pull request include references to any relevant issues?
-->

## Summary
Fixed the incorrect import example in the "correct exmaple"
<!-- What's the purpose of the change? What does it do, and why? -->

## Test Plan
🤷 
<!-- How was it tested? -->
This commit is contained in:
Jonas Vacek 2025-10-29 20:03:56 +01:00 committed by GitHub
parent 7045898ffa
commit aca8ba76a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ impl Violation for SuspiciousEvalUsage {
///
///
/// def render_username(username):
/// return django.utils.html.format_html("<i>{}</i>", username) # username is escaped.
/// return format_html("<i>{}</i>", username) # username is escaped.
/// ```
///
/// ## References