mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
7 lines
168 B
Python
7 lines
168 B
Python
# Bad import.
|
|
from __future__ import annotations # Not PYI044 (not a stubfile).
|
|
|
|
# Good imports.
|
|
from __future__ import Something
|
|
import sys
|
|
from socket import AF_INET
|