Skip to content

Commit

Permalink
Another unneeded ignore?
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Nov 26, 2024
1 parent 0bf98f5 commit c2def7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/column/string.py
Original file line number Diff line number Diff line change
Expand Up @@ -6038,7 +6038,7 @@ def find_and_replace(
df = df.dropna(subset=["old"])
else:
res = self
return res.replace(df._data["old"], df._data["new"]) # type: ignore[return-value]
return res.replace(df._data["old"], df._data["new"])

def normalize_binop_value(self, other) -> column.ColumnBase | cudf.Scalar:
if (
Expand Down

0 comments on commit c2def7b

Please sign in to comment.