Skip to content

Commit

Permalink
Fix to address pydata/xarray#9043
Browse files Browse the repository at this point in the history
  • Loading branch information
kafitzgerald authored Oct 21, 2024
1 parent 6d7de40 commit 4a0a808
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/7-animation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@
"metadata": {},
"outputs": [],
"source": [
"vmin = t.min()\n",
"vmax = t.max()\n",
"vmin = t.min().values\n",
"vmax = t.max().values\n",
"levels = 30\n",
"\n",
"# create initial plot that we will update\n",
Expand Down

0 comments on commit 4a0a808

Please sign in to comment.