Skip to content

Commit

Permalink
remove awaits in icechunk notebook (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamman authored Oct 17, 2024
1 parent ace3621 commit a944e6d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions icechunk-python/notebooks/performance/era5_xarray-Icechunk.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
],
"source": [
"prefix = \"ryan/icechunk-tests-era5-999\"\n",
"store = await IcechunkStore.create(\n",
"store = IcechunkStore.create(\n",
" storage=StorageConfig.s3_from_env(\n",
" bucket=\"icechunk-test\",\n",
" prefix=prefix\n",
Expand Down Expand Up @@ -324,7 +324,7 @@
}
],
"source": [
"await store.commit(\"wrote data\")"
"store.commit(\"wrote data\")"
]
},
{
Expand All @@ -342,7 +342,7 @@
"metadata": {},
"outputs": [],
"source": [
"store = await IcechunkStore.open_existing(\n",
"store = IcechunkStore.open_existing(\n",
" storage=StorageConfig.s3_from_env(\n",
" bucket=\"icechunk-test\",\n",
" prefix=prefix\n",
Expand Down Expand Up @@ -1044,9 +1044,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:icechunk-pip]",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "conda-env-icechunk-pip-py"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -1058,7 +1058,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.7"
"version": "3.12.0"
}
},
"nbformat": 4,
Expand Down

0 comments on commit a944e6d

Please sign in to comment.