diff --git a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
index a553d709dd625549832faea983c269d1ff96b69d..8ff0d1613d4cc604d6847bde5c8ff0582d45dc60 100644
--- a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
+++ b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
@@ -48,7 +48,7 @@
     "match_asics = False # if set, inner ASIC borders are matched to the same signal level\n",
     "corr_asic_diag = False # if set, diagonal drop offs on ASICs are correted \n",
     "melt_snow = \"\" # if set to \"none\" snowy pixels are identified and resolved to NaN, if set to \"interpolate\", the value is interpolated from neighbouring pixels\n",
-    "cal_db_timeout = 30000 # in milli seconds\n",
+    "cal_db_timeout = 30000 # in milliseconds\n",
     "max_cells_db_dark = 0  # set to a value different than 0 to use this value for dark data DB queries\n",
     "max_cells_db = 0 # set to a value different than 0 to use this value for DB queries\n",
     "chunk_size_idim = 1  # chunking size of imaging dimension, adjust if user software is sensitive to this.\n",
@@ -448,8 +448,7 @@
     "        except IOError:\n",
     "            return\n",
     "        if not nodb:\n",
-    "            when = agipd_corr.initialize_from_db(dbparms, qm, only_dark=(fileparms != \"\"))\n",
-    "            print(when)\n",
+    "            when = agipd_corr.initialize_from_db(dbparms, qm, only_dark=(fileparms != \"\"))            \n",
     "        if fileparms != \"\":\n",
     "            agipd_corr.initialize_from_file(fileparms, qm, with_dark=nodb)\n",
     "        print(\"Initialized constants\")\n",
@@ -754,18 +753,14 @@
     "    try:\n",
     "\n",
     "        rf, cf = ff\n",
-    "        #print(cf, i)\n",
     "        if rf is None:\n",
-    "            \n",
     "            raise Exception(\"File not present\")\n",
-    "        #print(rf)\n",
+    "        \n",
     "        infile = h5py.File(rf, \"r\")\n",
-    "        #print(\"/INSTRUMENT/{}_DET_AGIPD1M-1/DET/{}CH0:xtdf/image/data\".format(instrument, i))\n",
     "        raw.append(np.array(infile[\"/INSTRUMENT/{}_DET_AGIPD1M-1/DET/{}CH0:xtdf/image/data\".format(instrument, i)][first_idx:last_idx,0,...]))\n",
     "        infile.close()\n",
     "        \n",
     "        infile = h5py.File(cf, \"r\")\n",
-    "        #print(\"/INSTRUMENT/SPB_DET_AGIPD1M-1/DET/{}CH0:xtdf/image/data\".format(i))\n",
     "        corrected.append(np.array(infile[\"/INSTRUMENT/{}_DET_AGIPD1M-1/DET/{}CH0:xtdf/image/data\".format(instrument, i)][first_idx:last_idx,...]))\n",
     "        gains.append(np.array(infile[\"/INSTRUMENT/{}_DET_AGIPD1M-1/DET/{}CH0:xtdf/image/gain\".format(instrument, i)][first_idx:last_idx,...]))\n",
     "        mask.append(np.array(infile[\"/INSTRUMENT/{}_DET_AGIPD1M-1/DET/{}CH0:xtdf/image/mask\".format(instrument, i)][first_idx:last_idx,...]))\n",