Skip to content

Commit

Permalink
misc: ignore coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
aivanoved committed Aug 21, 2024
1 parent 6f0db73 commit 8efb260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narwhals/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def maybe_convert_dtypes(df: T, *args: bool, **kwargs: bool | str) -> T:

if isinstance(df_any, PandasLikeSeries):
native_ser = df_any._native_series
ser = (
ser = ( # pragma: no cover
native_ser.convert_dtypes(*args, **kwargs)
if getattr(native_ser, "convert_dtypes", None)
else native_ser.apply(lambda x: x)
Expand Down

0 comments on commit 8efb260

Please sign in to comment.