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
3 changes: 3 additions & 0 deletions narwhals/_compliant/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ class CompliantDataFrame(
Protocol[CompliantSeriesT, CompliantExprT_contra, NativeFrameT_co],
):
_native_frame: Any
_implementation: Implementation
_backend_version: tuple[int, ...]
_version: Version
Comment on lines +53 to +55
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was pretty surprised that I didn't need to change anything outside of the protocol

Looks like everyone was already compliant πŸ˜„


def __narwhals_dataframe__(self) -> Self: ...
def __narwhals_namespace__(self) -> Any: ...
Expand Down
Loading