Skip to content

Commit 5cdc7af

Browse files
authored
Merge pull request #2403 from Esri/jy-fix-get-item
replace erroneous method name
2 parents 4902621 + efc5e9f commit 5cdc7af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guide/13-managing-arcgis-applications/itemgraph_and_remap_data.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@
314314
],
315315
"source": [
316316
"# conversely, we can grab a dependent item and see what items immediately contain it and need it to exist\n",
317-
"result_flayer = graph.get_item(\"41dd3cca32914cc7ae8fd3a727f44e17\")\n",
317+
"result_flayer = graph.get_node(\"41dd3cca32914cc7ae8fd3a727f44e17\")\n",
318318
"result_flayer.item"
319319
]
320320
},
@@ -887,7 +887,7 @@
887887
"source": [
888888
"# so we can see that one of them is from our root item, and one is from a dependent item\n",
889889
"# let's see what that sub item is\n",
890-
"sub_node = graph2.get_item(\"7099b3c2e979415e975d00e58afed77e\")\n",
890+
"sub_node = graph2.get_node(\"7099b3c2e979415e975d00e58afed77e\")\n",
891891
"webmap = sub_node.item\n",
892892
"webmap"
893893
]
@@ -991,7 +991,7 @@
991991
"name": "python",
992992
"nbconvert_exporter": "python",
993993
"pygments_lexer": "ipython3",
994-
"version": "3.12.11"
994+
"version": "3.13.2"
995995
}
996996
},
997997
"nbformat": 4,

0 commit comments

Comments
 (0)