mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
5 lines
121 B
Python
5 lines
121 B
Python
"""Access a sub-importation via an alias."""
|
|
import pyarrow as pa
|
|
import pyarrow.csv
|
|
|
|
print(pa.csv.read_csv("test.csv"))
|