Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed May 2, 2024
1 parent ddcda4f commit afae62f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modin/core/dataframe/algebra/binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@ def try_compute_new_dtypes(
if any("pyarrow" in str(x) for x in first.dtypes) or any(
"pyarrow" in str(x) for x in second.dtypes
):
backend = "pyarrow"
backend = "[pyarrow]"
dtypes = maybe_build_dtypes_series(
first, second, dtype=pandas.api.types.pandas_dtype(f"bool[{backend}]")
first, second, dtype=pandas.api.types.pandas_dtype(f"bool{backend}")
)
elif infer_dtypes == "common_cast":
dtypes = maybe_compute_dtypes_common_cast(
Expand Down

0 comments on commit afae62f

Please sign in to comment.