From 860835de397e2931d8562fa7f938ed343720644e Mon Sep 17 00:00:00 2001 From: Matthew Murray Date: Mon, 7 Oct 2024 18:59:26 -0700 Subject: [PATCH] clean up --- python/cudf/cudf/_lib/nvtext/jaccard.pyx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/cudf/cudf/_lib/nvtext/jaccard.pyx b/python/cudf/cudf/_lib/nvtext/jaccard.pyx index 798601ce364..c964d0206b7 100644 --- a/python/cudf/cudf/_lib/nvtext/jaccard.pyx +++ b/python/cudf/cudf/_lib/nvtext/jaccard.pyx @@ -2,8 +2,6 @@ from cudf.core.buffer import acquire_spill_lock -from pylibcudf.libcudf.types cimport size_type - from cudf._lib.column cimport Column from pylibcudf import nvtext @@ -14,6 +12,6 @@ def jaccard_index(Column input1, Column input2, int width): result = nvtext.jaccard.jaccard_index( input1.to_pylibcudf(mode="read"), input2.to_pylibcudf(mode="read"), - width, + width, ) return Column.from_pylibcudf(result)