Skip to content

Commit

Permalink
Skip test?
Browse files Browse the repository at this point in the history
  • Loading branch information
DeaMariaLeon committed Oct 5, 2024
1 parent add5dab commit 2dc1447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narwhals/_polars/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def native_to_narwhals_dtype(dtype: Any, dtypes: DTypes) -> DType:
if dtype == pl.List:
return dtypes.List(native_to_narwhals_dtype(dtype.inner, dtypes))
if dtype == pl.Array:
if parse_version(pl.__version__) < (1, 0):
if parse_version(pl.__version__) < (1, 0): # pragma: no cover
return dtypes.Array(
native_to_narwhals_dtype(dtype.inner, dtypes), dtype.width
)
Expand Down

0 comments on commit 2dc1447

Please sign in to comment.