From 126c734abc7cd07490860a898c449cf0488ac3c0 Mon Sep 17 00:00:00 2001 From: jianfengmao Date: Wed, 15 Nov 2023 08:08:20 -0700 Subject: [PATCH] Fix a docstring error --- py/server/deephaven/pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/server/deephaven/pandas.py b/py/server/deephaven/pandas.py index c14ae1f9ca7..883622ce27b 100644 --- a/py/server/deephaven/pandas.py +++ b/py/server/deephaven/pandas.py @@ -130,7 +130,7 @@ def to_pandas(table: Table, cols: List[str] = None, dtypes. Both "numpy_nullable" and "pyarrow" automatically convert Deephaven nulls to Pandas NA and enable Pandas extension types. Extension types are needed to support types beyond NumPy's type system. Extension types support operations such as properly mapping Java Strings to Python strings. default is "numpy_nullable". - conv_null (bool): when dtype_backend is not set, whether to check for Deephaven nulls in the data and + conv_null (bool): when dtype_backend is set to None, whether to check for Deephaven nulls in the data and automatically replace them with pd.NA. default is True. Returns: