Skip to content

Commit 3a53ece

Browse files
committed
fix style check and remove debug prints
1 parent 47d4fe9 commit 3a53ece

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

python/cugraph/cugraph/structure/graph_classes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
npartiteGraphImpl,
1919
)
2020
import cudf
21-
import cupy
2221
import dask_cudf
2322

2423
from cugraph.utilities.utils import import_optional

python/cugraph/cugraph/tests/traversal/test_paths.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,6 @@ def test_shortest_path_length_no_target(graphs, load_traversal_results):
220220
)
221221
cupy_path_1_to_all = cugraph.shortest_path_length(cupy_df, 1)
222222

223-
print("\ncupy_df = \n", cupy_df)
224-
225-
print("\ncugraph = \n", cugraph_path_1_to_all)
226-
print("cupy = \n", cupy_path_1_to_all)
227-
228223
# Cast networkx graph on cugraph vertex column type from str to int.
229224
# SSSP preserves vertex type, convert for comparison
230225
assert_series_equal(

python/cugraph/cugraph/tests/traversal/test_sssp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,6 @@ def test_sssp_csr_graph(graph_file):
523523

524524
print("source = ", source)
525525

526-
527526
G_csr.from_cudf_adjlist(offsets, indices, weights)
528527

529528
result_csr = cugraph.sssp(G_csr, source)

0 commit comments

Comments
 (0)