mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
5 lines
126 B
Python
5 lines
126 B
Python
"""Test: removal of multi-segment and aliases imports."""
|
|
from a.b import c
|
|
from d.e import f as g
|
|
import h.i
|
|
import j.k as l
|