[`flake8-annotations`] Remove unused import in example (`ANN401`) (#20000)

## Summary

Remove unused import in the  "Use instead" example.

## Test Plan

It's just a text description, no test needed
This commit is contained in:
Andrey 2025-08-20 15:19:18 +02:00 committed by GitHub
parent 1d2128f918
commit f4be05a83b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 3 deletions

View File

@ -485,9 +485,6 @@ impl Violation for MissingReturnTypeClassMethod {
/// Use instead: /// Use instead:
/// ///
/// ```python /// ```python
/// from typing import Any
///
///
/// def foo(x: int): ... /// def foo(x: int): ...
/// ``` /// ```
/// ///