Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions narwhals/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from narwhals.expr import Expr
from narwhals.series import Series
from narwhals.utils import Implementation
from narwhals.utils import Version

# All dataframes supported by Narwhals have a
# `columns` property. Their similarities don't extend
Expand Down Expand Up @@ -79,6 +80,7 @@ def aggregate(self, *exprs: Any) -> Self:
class CompliantExpr(Protocol, Generic[CompliantSeriesT_co]):
_implementation: Implementation
_backend_version: tuple[int, ...]
_version: Version
_evaluate_output_names: Callable[
[CompliantDataFrame | CompliantLazyFrame], Sequence[str]
]
Expand Down
Loading