From 6418b9695272b3029ea8d05da03229f8d48007af Mon Sep 17 00:00:00 2001 From: jnke2016 Date: Fri, 10 Jan 2025 16:43:09 -0800 Subject: [PATCH] remove unsued import --- python/cugraph/cugraph/sampling/biased_random_walks.py | 1 - python/cugraph/cugraph/sampling/uniform_random_walks.py | 1 - 2 files changed, 2 deletions(-) diff --git a/python/cugraph/cugraph/sampling/biased_random_walks.py b/python/cugraph/cugraph/sampling/biased_random_walks.py index 9c70f21f63..41340cba8a 100644 --- a/python/cugraph/cugraph/sampling/biased_random_walks.py +++ b/python/cugraph/cugraph/sampling/biased_random_walks.py @@ -12,7 +12,6 @@ # limitations under the License. import cudf -import cupy as cp from pylibcugraph import ResourceHandle from pylibcugraph import ( biased_random_walks as pylibcugraph_biased_random_walks, diff --git a/python/cugraph/cugraph/sampling/uniform_random_walks.py b/python/cugraph/cugraph/sampling/uniform_random_walks.py index ba4af23227..99d6695824 100644 --- a/python/cugraph/cugraph/sampling/uniform_random_walks.py +++ b/python/cugraph/cugraph/sampling/uniform_random_walks.py @@ -12,7 +12,6 @@ # limitations under the License. import cudf -import cupy as cp from pylibcugraph import ResourceHandle from pylibcugraph import ( uniform_random_walks as pylibcugraph_uniform_random_walks,