Skip to content

Commit

Permalink
coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Mar 18, 2024
1 parent e0917f8 commit b15a65f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narwhals/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def __init__(
): # pragma: no cover
self._dataframe = PandasDataFrame(df, implementation="cudf")
self._implementation = "cudf"
elif hasattr(df, "__narwhals_dataframe__"):
elif hasattr(df, "__narwhals_dataframe__"): # pragma: no cover
self._dataframe = df.__narwhals_dataframe__()
self._implementation = "custom"
else:
Expand Down

0 comments on commit b15a65f

Please sign in to comment.