From 1fba1e12a7f61de1c87c11e76cea2c897acfcd9b Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:27:38 -0700 Subject: [PATCH] Add comma --- python/cudf/cudf/_lib/strings/find_multiple.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/_lib/strings/find_multiple.pyx b/python/cudf/cudf/_lib/strings/find_multiple.pyx index 70b559ab5de..39e0013769f 100644 --- a/python/cudf/cudf/_lib/strings/find_multiple.pyx +++ b/python/cudf/cudf/_lib/strings/find_multiple.pyx @@ -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)