Skip to content

Commit 7b43748

Browse files
committed
1 parent b4e4980 commit 7b43748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

narwhals/_duckdb/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def _nested_native_to_narwhals_dtype(
193193
return dtypes.Array(inner=inner, shape=tuple(shape))
194194
if is_dtype(duckdb_dtype, "enum"):
195195
if version is Version.V1:
196-
return dtypes.Enum() # type: ignore[call-arg]
196+
return dtypes.Enum() # pyright: ignore[reportCallIssue]
197197
categories = duckdb_dtype.children[0][1]
198198
return dtypes.Enum(categories=categories)
199199
# `MAP`, `UNION`

0 commit comments

Comments
 (0)