done
This commit is contained in:
34
lib/python3.11/site-packages/narwhals/_dask/selectors.py
Normal file
34
lib/python3.11/site-packages/narwhals/_dask/selectors.py
Normal file
@ -0,0 +1,34 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
from narwhals._compliant import CompliantSelector, LazySelectorNamespace
|
||||
from narwhals._dask.expr import DaskExpr
|
||||
|
||||
if TYPE_CHECKING:
|
||||
import dask.dataframe.dask_expr as dx # noqa: F401
|
||||
|
||||
from narwhals._compliant.typing import ScalarKwargs
|
||||
from narwhals._dask.dataframe import DaskLazyFrame # noqa: F401
|
||||
|
||||
|
||||
class DaskSelectorNamespace(LazySelectorNamespace["DaskLazyFrame", "dx.Series"]): # pyright: ignore[reportInvalidTypeArguments]
|
||||
@property
|
||||
def _selector(self) -> type[DaskSelector]:
|
||||
return DaskSelector
|
||||
|
||||
|
||||
class DaskSelector(CompliantSelector["DaskLazyFrame", "dx.Series"], DaskExpr): # type: ignore[misc]
|
||||
_depth: int = 0
|
||||
_scalar_kwargs: ScalarKwargs = {} # noqa: RUF012
|
||||
_function_name: str = "selector"
|
||||
|
||||
def _to_expr(self) -> DaskExpr:
|
||||
return DaskExpr(
|
||||
self._call,
|
||||
depth=self._depth,
|
||||
function_name=self._function_name,
|
||||
evaluate_output_names=self._evaluate_output_names,
|
||||
alias_output_names=self._alias_output_names,
|
||||
version=self._version,
|
||||
)
|
Reference in New Issue
Block a user