Skip to content

Commit

Permalink
adding the number of files to expect after the print line
Browse files Browse the repository at this point in the history
  • Loading branch information
Rplesha committed Feb 15, 2024
1 parent 8b74463 commit 922a5af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"# A quick sanity check to ensure that the files were calibrated.\n",
"# if this is zero, check the log message above for any errors that may have occurred during the calibration\n",
"wcsstep_files = glob.glob(os.path.join(data_dir_out, '*assignwcsstep*'))\n",
"print(len(wcsstep_files), 'assignwcsstep files written')"
"print(len(wcsstep_files), 'assignwcsstep files written') # 29 files should have been written"
]
},
{
Expand Down Expand Up @@ -215,7 +215,7 @@
"# A quick sanity check to ensure that the files were calibrated.\n",
"# if this is zero, check the log message above for any errors that may have occurred during the calibration\n",
"flatfield_files = glob.glob(os.path.join(data_dir_out, '*flatfieldstep*'))\n",
"print(len(flatfield_files), 'flatfieldstep files written')"
"print(len(flatfield_files), 'flatfieldstep files written') # 29 files should have been written (matching the wcs step)"
]
},
{
Expand Down

0 comments on commit 922a5af

Please sign in to comment.