Skip to content

Commit 63c5022

Browse files
authored
chore(typing): pyright ignore pl.UInt128 (#3144)
1 parent e92fcc9 commit 63c5022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

narwhals/_polars/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def native_to_narwhals_dtype( # noqa: C901, PLR0912
104104
return dtypes.Int16()
105105
if dtype == pl.Int8:
106106
return dtypes.Int8()
107-
if hasattr(pl, "UInt128") and dtype == pl.UInt128: # pragma: no cover
107+
if hasattr(pl, "UInt128") and dtype == pl.UInt128: # pyright: ignore[reportAttributeAccessIssue] # pragma: no cover
108108
# Not available for Polars pre 1.8.0
109109
return dtypes.UInt128()
110110
if dtype == pl.UInt64:

0 commit comments

Comments
 (0)