We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cc3a1c commit 1f67693Copy full SHA for 1f67693
narwhals/dataframe.py
@@ -432,7 +432,7 @@ def _extract_compliant(self: Self, arg: Any) -> Any:
432
if isinstance(arg, Series):
433
return arg._compliant_series._to_expr()
434
if isinstance(arg, Expr):
435
- return arg._to_compliant_expr(self.__narwhals_namespace__())
+ return arg._to_compliant_expr(self.__narwhals_namespace__()) # comment
436
if isinstance(arg, str):
437
return plx.col(arg)
438
if get_polars() is not None and "polars" in str(type(arg)): # pragma: no cover
0 commit comments