Skip to content

Commit

Permalink
fix time/grid-step selection logic for CI in S&H example (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo authored Sep 6, 2024
1 parent efc4440 commit 239aaff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/PyMPDATA_examples/Shipway_and_Hill_2012/fig_1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"\n",
"if 'CI' in os.environ:\n",
" NRS = (min(NRS),)\n",
" DTS = (min(DTS),)\n",
" DZS = (min(DZS),)\n",
" DTS = (max(DTS),)\n",
" DZS = (max(DZS),)\n",
"\n",
"R_MIN = 1 * si.um\n",
"R_MAX = 20.2 * si.um\n",
Expand Down

0 comments on commit 239aaff

Please sign in to comment.