Skip to content

Commit

Permalink
lint notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Mar 6, 2024
1 parent a9c2e42 commit 49e8d7e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions notebooks/00-quick_intro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,14 @@
"source": [
"glider_grab = GliderDataFetcher()\n",
"\n",
"df = glider_grab.query(10, 40, -90, 8, \"2010-01-01\", \"2013-06-02\")\n",
"df = glider_grab.query(\n",
" min_lat=10,\n",
" max_lat=40,\n",
" min_lon=-90,\n",
" max_lon=8,\n",
" min_time=\"2010-01-01\",\n",
" max_time=\"2013-06-02\",\n",
")\n",
"df"
]
},
Expand Down Expand Up @@ -147,7 +154,7 @@
"datasets = DatasetList()\n",
"ds_ids = datasets.get_ids()\n",
"\n",
"print(f\"found {len(ds_ids)} glider datasets on the server {datasets.e.server}.\")"
"print(f\"found {len(ds_ids)} glider datasets on {datasets.e.server}.\")"
]
}
],
Expand All @@ -167,7 +174,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
"version": "3.10.13"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 49e8d7e

Please sign in to comment.