diff --git a/docs/HyBIG-Example-Usage.ipynb b/docs/HyBIG-Example-Usage.ipynb index b0d3939..1fc04d9 100644 --- a/docs/HyBIG-Example-Usage.ipynb +++ b/docs/HyBIG-Example-Usage.ipynb @@ -57,11 +57,11 @@ "metadata": {}, "outputs": [], "source": [ - "from harmony import Collection, Environment, Client, Request\n", - "\n", "# creates an output directory for the downloaded files\n", "from pathlib import Path\n", "\n", + "from harmony import Client, Collection, Environment, Request\n", + "\n", "output_dir = Path('./hybig-output')\n", "Path.mkdir(output_dir, exist_ok=True)" ]