Skip to content

Commit e3ab633

Browse files
committed
fix
1 parent 5fc0c8f commit e3ab633

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

narwhals/_pandas_like/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,9 @@ def narwhals_to_native_dtype( # noqa: PLR0915
701701
except ImportError as exc: # pragma: no cover
702702
msg = f"Unable to convert to {dtype} to to the following exception: {exc.msg}"
703703
raise ImportError(msg) from exc
704+
from narwhals._arrow.utils import (
705+
narwhals_to_native_dtype as arrow_narwhals_to_native_dtype,
706+
)
704707

705708
return pd.ArrowDtype(
706709
pa.struct(

0 commit comments

Comments
 (0)