From bd96057d2a1aae1c184c632b066ee7ac83e93c36 Mon Sep 17 00:00:00 2001 From: Doug Branton Date: Wed, 10 Jan 2024 11:03:18 -0800 Subject: [PATCH] add save docs --- docs/tutorials/working_with_the_ensemble.ipynb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/working_with_the_ensemble.ipynb b/docs/tutorials/working_with_the_ensemble.ipynb index 823fc16b..a0f5b2ec 100644 --- a/docs/tutorials/working_with_the_ensemble.ipynb +++ b/docs/tutorials/working_with_the_ensemble.ipynb @@ -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" ] }, { @@ -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)" ]