Skip to content

Commit

Permalink
Fixed stamp plotting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcrenshaw committed Oct 28, 2024
1 parent 7fcd0a8 commit fd0151d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/WET/WET-007/WET-007_20241028_tie-vs-danish.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
"\n",
" intraStamps = butler.get(\"donutStampsIntra\", dataId=ID, collections=collection)\n",
" intraStamps = [stamp for stamp, selected in zip(intraStamps, intraSelected) if selected]\n",
" extraStamps = butler.get(\"donutStampsIntra\", dataId=ID, collections=collection)\n",
" extraStamps = butler.get(\"donutStampsExtra\", dataId=ID, collections=collection)\n",
" extraStamps = [stamp for stamp, selected in zip(extraStamps, extraSelected) if selected]\n",
" \n",
" usedList = butler.get(\"zernikes\", dataId=ID, collections=collection)[1:][\"used\"]\n",
Expand Down

0 comments on commit fd0151d

Please sign in to comment.