diff --git a/notebooks/algorithms/structure/Renumber-2.ipynb b/notebooks/algorithms/structure/Renumber-2.ipynb index 666972b5571..479df53c6be 100755 --- a/notebooks/algorithms/structure/Renumber-2.ipynb +++ b/notebooks/algorithms/structure/Renumber-2.ipynb @@ -82,7 +82,7 @@ "source": [ "# Import a built-in dataset\n", "from cugraph.datasets import cyber\n", - "gdf = cyber.get_edgelist(fetch=True)" + "gdf = cyber.get_edgelist(download=True)" ] }, { diff --git a/notebooks/algorithms/structure/Symmetrize.ipynb b/notebooks/algorithms/structure/Symmetrize.ipynb index 0a9f962b98e..5d5b270708a 100755 --- a/notebooks/algorithms/structure/Symmetrize.ipynb +++ b/notebooks/algorithms/structure/Symmetrize.ipynb @@ -83,7 +83,7 @@ "from cugraph.datasets import karate\n", "\n", "# This is the symmetrized dataset\n", - "test_gdf = karate.get_edgelist(fetch=True)" + "test_gdf = karate.get_edgelist(download=True)" ] }, {