Files
2025-09-07 22:09:54 +02:00

24 lines
312 B
Python

from __future__ import annotations
from narwhals.selectors import (
all,
boolean,
by_dtype,
categorical,
datetime,
matches,
numeric,
string,
)
__all__ = [
"all",
"boolean",
"by_dtype",
"categorical",
"datetime",
"matches",
"numeric",
"string",
]