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.
pl.UInt128
1 parent e92fcc9 commit 63c5022Copy full SHA for 63c5022
narwhals/_polars/utils.py
@@ -104,7 +104,7 @@ def native_to_narwhals_dtype( # noqa: C901, PLR0912
104
return dtypes.Int16()
105
if dtype == pl.Int8:
106
return dtypes.Int8()
107
- if hasattr(pl, "UInt128") and dtype == pl.UInt128: # pragma: no cover
+ if hasattr(pl, "UInt128") and dtype == pl.UInt128: # pyright: ignore[reportAttributeAccessIssue] # pragma: no cover
108
# Not available for Polars pre 1.8.0
109
return dtypes.UInt128()
110
if dtype == pl.UInt64:
0 commit comments