From a4331493c79de49b3298b7cdb2c1e48f58a8960b Mon Sep 17 00:00:00 2001 From: Karim Ahmed <karim.ahmed@xfel.eu> Date: Thu, 30 Jan 2020 10:27:42 +0100 Subject: [PATCH] add comment --- cal_tools/cal_tools/tools.py | 3 +++ notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cal_tools/cal_tools/tools.py b/cal_tools/cal_tools/tools.py index 34f8e211d..d5477e9f6 100644 --- a/cal_tools/cal_tools/tools.py +++ b/cal_tools/cal_tools/tools.py @@ -415,6 +415,9 @@ def get_constant_from_db_and_time(device, constant, condition, empty_constant, if m.comm_db_success: return data, m.calibration_constant_version.begin_at else: + # retun none for injection time if communication with db failed. + # reasons (no constant or condition found, + # or network problem) return data, None else: return data, None diff --git a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb index 3d34b7934..2bb9fdeae 100644 --- a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb +++ b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb @@ -641,9 +641,6 @@ " for key, item in when.items():\n", " if hasattr(item, 'strftime'):\n", " item = item.strftime('%y-%m-%d %H:%M')\n", - " # If constant retrieval is crashed\n", - " else:\n", - " item = 'None'\n", " when[key] = item\n", " print('{:.<12s}'.format(key), item)\n", " \n", -- GitLab