We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9748309 commit 23373a3Copy full SHA for 23373a3
narwhals/translate.py
@@ -385,10 +385,10 @@ def _from_native_impl( # noqa: PLR0915
385
from narwhals._spark_like.dataframe import SparkLikeLazyFrame
386
387
if series_only:
388
- msg = "Cannot only use `series_only` with pyspark DataFrame"
+ msg = "Cannot only use `series_only` with SQLFrame DataFrame"
389
raise TypeError(msg)
390
if eager_only or eager_or_interchange_only:
391
- msg = "Cannot only use `eager_only` or `eager_or_interchange_only` with pyspark DataFrame"
+ msg = "Cannot only use `eager_only` or `eager_or_interchange_only` with SQLFrame DataFrame"
392
393
import sqlframe._version
394
0 commit comments