We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2ddef commit 14f6a88Copy full SHA for 14f6a88
API/notebooks/How_to_use_IDC_APIs.ipynb
@@ -356,7 +356,7 @@
356
"id": "AsmNpqYtyxl0"
357
},
358
"source": [
359
- "collections_req = requests.get('{}/collections'.format(idc_api_preamble))\n",
+ "response = requests.get('{}/collections'.format(idc_api_preamble))\n",
360
"# Check that there wasn't an error with the request\n",
361
"if response.status_code != 200:\n",
362
" # Print the error code and message if something went wrong\n",
@@ -372,7 +372,7 @@
372
373
374
"# Print the collections JSON text\n",
375
- "pretty(collections_req)"
+ "pretty(response)"
376
],
377
"execution_count": null,
378
"outputs": []
0 commit comments