From 76919b1e0c34b710beee7bd77f2c869a12ee4cb2 Mon Sep 17 00:00:00 2001 From: Ralph Liu Date: Thu, 10 Aug 2023 09:01:22 -0700 Subject: [PATCH] returns a copy of a cudf edge list --- python/cugraph/cugraph/datasets/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cugraph/cugraph/datasets/dataset.py b/python/cugraph/cugraph/datasets/dataset.py index 229d0fda632..b276a87b88e 100644 --- a/python/cugraph/cugraph/datasets/dataset.py +++ b/python/cugraph/cugraph/datasets/dataset.py @@ -191,7 +191,7 @@ def get_edgelist(self, download=False): header=header, ) - return self._edgelist + return self._edgelist.copy() def get_graph( self,