Skip to content

Commit

Permalink
Add comma
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Sep 18, 2024
1 parent 08d98c1 commit 1fba1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/strings/find_multiple.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def find_multiple(Column source_strings, Column target_strings):
of the `target_strings` are found in each string of `source_strings`.
"""
plc_result = plc.strings.find_multiple.find_multiple(
source_strings.to_pylibcudf(mode="read")
source_strings.to_pylibcudf(mode="read"),
target_strings.to_pylibcudf(mode="read")
)
return Column.from_pylibcudf(plc_result)

0 comments on commit 1fba1e1

Please sign in to comment.