Skip to content

Commit

Permalink
fix exp
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Sep 25, 2023
1 parent 8768f52 commit b1f207e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/wp4/cmip6_sea_ice_diagnostics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@
")\n",
"\n",
"datasets_cmip6 = {}\n",
"for experiment, models in models_dict.items():\n",
"for experiment in experiments:\n",
" request = (\n",
" request_cmip6_historical\n",
" if experiment == \"historical\"\n",
Expand All @@ -482,7 +482,7 @@
" if not request[1][\"year\"]:\n",
" continue\n",
" tmp_datasets = []\n",
" for model in models:\n",
" for model in models_dict[experiment]:\n",
" print(f\"{experiment=} {model=}\")\n",
" ds = download.download_and_transform(\n",
" request[0],\n",
Expand Down

0 comments on commit b1f207e

Please sign in to comment.