From e7f438adb7624585f27977a4e937b55e39e1cc26 Mon Sep 17 00:00:00 2001 From: dangotbanned <125183946+dangotbanned@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:51:12 +0000 Subject: [PATCH] chore(typing): add missing `_FullContext` to `CompliantDataFrame` - Only spotted while trying out `CompliantGroupBy` - `CompliantLazyFrame` already has these attributes --- narwhals/_compliant/dataframe.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/narwhals/_compliant/dataframe.py b/narwhals/_compliant/dataframe.py index 0246fd7dcf..5cb593530f 100644 --- a/narwhals/_compliant/dataframe.py +++ b/narwhals/_compliant/dataframe.py @@ -50,6 +50,9 @@ class CompliantDataFrame( Protocol[CompliantSeriesT, CompliantExprT_contra, NativeFrameT_co], ): _native_frame: Any + _implementation: Implementation + _backend_version: tuple[int, ...] + _version: Version def __narwhals_dataframe__(self) -> Self: ... def __narwhals_namespace__(self) -> Any: ...