ruff/crates/ruff_linter/resources/test/fixtures/flake8_pyi/PYI044.pyi
Steve C 7b5fd63ce8
[flake8-pyi] - add autofix for future-annotations-in-stub (PYI044) (#12676)
## Summary

add autofix for `PYI044`

## Test Plan

`cargo test`
2024-08-05 22:27:55 -04:00

8 lines
213 B
Python

# Bad import.
from __future__ import annotations # PYI044.
from __future__ import annotations, with_statement # PYI044.
# Good imports.
from __future__ import with_statement
import sys
from socket import AF_INET