Skip to content

Commit

Permalink
add save docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbrn committed Jan 10, 2024
1 parent c9e34a4 commit bd96057
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/tutorials/working_with_the_ensemble.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,9 @@
"metadata": {},
"outputs": [],
"source": [
"ens.save_ensemble(\".\", \"ensemble\", additional_frames=[\"result_3\"]) # Saves object, source, and result_3 to disk"
"ens.save_ensemble(\n",
" \".\", \"ensemble\", additional_frames=[\"result_3\"],\n",
" ) # Saves object, source, and result_3 to disk"
]
},
{
Expand All @@ -860,7 +862,7 @@
"metadata": {},
"outputs": [],
"source": [
"new_ens = Ensemble(client = ens.client) # use the same client\n",
"new_ens = Ensemble(client=ens.client) # use the same client\n",
"new_ens.from_ensemble(\"./ensemble\", additional_frames=True)\n",
"new_ens.select_frame(\"result_3\").head(5)"
]
Expand Down

0 comments on commit bd96057

Please sign in to comment.