mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-30 05:45:24 +00:00
8 lines
213 B
Python
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
|