From 0c85dbb0efca9b43e47ea8f732a741c651614022 Mon Sep 17 00:00:00 2001 From: Dmitry Chigarev Date: Mon, 13 Nov 2023 13:11:38 +0100 Subject: [PATCH] fix pydocstyle Signed-off-by: Dmitry Chigarev --- modin/core/dataframe/algebra/binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modin/core/dataframe/algebra/binary.py b/modin/core/dataframe/algebra/binary.py index 6f9142a197c..22cd2c3ef88 100644 --- a/modin/core/dataframe/algebra/binary.py +++ b/modin/core/dataframe/algebra/binary.py @@ -227,7 +227,7 @@ def try_compute_new_dtypes( NumPy dtype of the result. If not specified it will be inferred from the `infer_dtypes` parameter. axis : int, default: 0 Axis to perform the binary operation along. - func : callable(pandas.DataFrame, pandas.DataFrame) -> pandas.DataFrame + func : callable(pandas.DataFrame, pandas.DataFrame) -> pandas.DataFrame, optional A callable to be used for the "try_sample" method. Returns