From c7f901993d268fab15f1f7e89fb982de252d56d7 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Thu, 21 Nov 2024 10:43:41 +0000 Subject: [PATCH] update comment --- packages/python/plotly/plotly/express/_core.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/python/plotly/plotly/express/_core.py b/packages/python/plotly/plotly/express/_core.py index ddaa14a57c..d481b68204 100644 --- a/packages/python/plotly/plotly/express/_core.py +++ b/packages/python/plotly/plotly/express/_core.py @@ -1486,9 +1486,8 @@ def build_dataframe(args, constructor): # PySpark to pandas. is_pd_like = False - # Flag that indicates if data_frame requires to be converted to arrow via the - # dataframe interchange protocol. - # True if Ibis, DuckDB, Vaex or implements __dataframe__ + # Flag that indicates if data_frame needs to be converted to PyArrow. + # True if Ibis, DuckDB, Vaex, or implements __dataframe__ needs_interchanging = False # If data_frame is provided, we parse it into a narwhals DataFrame, while accounting