We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4e4980 commit 7b43748Copy full SHA for 7b43748
narwhals/_duckdb/utils.py
@@ -193,7 +193,7 @@ def _nested_native_to_narwhals_dtype(
193
return dtypes.Array(inner=inner, shape=tuple(shape))
194
if is_dtype(duckdb_dtype, "enum"):
195
if version is Version.V1:
196
- return dtypes.Enum() # type: ignore[call-arg]
+ return dtypes.Enum() # pyright: ignore[reportCallIssue]
197
categories = duckdb_dtype.children[0][1]
198
return dtypes.Enum(categories=categories)
199
# `MAP`, `UNION`
0 commit comments