<!-- Thank you for taking the time to report an issue! We're glad to have you involved with Ruff. If you're filing a bug report, please consider including the following information: * A minimal code snippet that reproduces the bug. * The command you invoked (e.g., `ruff /path/to/file.py --fix`), ideally including the `--isolated` flag. * The current Ruff settings (any relevant sections from your `pyproject.toml`). * The current Ruff version (`ruff --version`). --> When running `ruff --fix test.py` (Ruff 0.0.255), it doesn't change the `Deque` to `deque` ```python from typing import Deque a: Deque[str] ``` However, interestingly, if we replace `Deque` with `List`, it does change to `list` ```python from typing import List a: List[str] ```