Skip to content

Commit 77bdcb5

Browse files
committed
fix typo
1 parent 917047d commit 77bdcb5

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

intermediate/remote-data.ipynb

+8-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"#### **What are we seeing?** \n",
8989
"\n",
9090
"* xarray uses `guess_engine()` to identify which backend can open the file.\n",
91-
"* `guess_engine()` will looop through the preinstalled backends and will run `guess_can_open()`.\n",
91+
"* `guess_engine()` will loop through the preinstalled backends and will run `guess_can_open()`.\n",
9292
"* if an engine can handle the file type it will verify that we are working with a local file.\n",
9393
"* Once that we know which backend we'll use we invoke that backend implementation of `open_dataset()`.\n",
9494
"\n",
@@ -246,7 +246,6 @@
246246
"source": [
247247
"import fsspec\n",
248248
"\n",
249-
"\n",
250249
"uri = \"https://its-live-data.s3-us-west-2.amazonaws.com/test-space/sample-data/sst.mnmean.nc\"\n",
251250
"# we prepend the cache type to the URI, this is called protocol chaining in fsspec-speak\n",
252251
"file = fsspec.open_local(f\"simplecache::{uri}\", filecache={'cache_storage': '/tmp/fsspec_cache'})\n",
@@ -359,6 +358,11 @@
359358
}
360359
],
361360
"metadata": {
361+
"kernelspec": {
362+
"display_name": "Python 3 (ipykernel)",
363+
"language": "python",
364+
"name": "python3"
365+
},
362366
"language_info": {
363367
"codemirror_mode": {
364368
"name": "ipython",
@@ -368,7 +372,8 @@
368372
"mimetype": "text/x-python",
369373
"name": "python",
370374
"nbconvert_exporter": "python",
371-
"pygments_lexer": "ipython3"
375+
"pygments_lexer": "ipython3",
376+
"version": "3.10.13"
372377
}
373378
},
374379
"nbformat": 4,

0 commit comments

Comments
 (0)