mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +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
|