From 4e2f8e920790d7305b7fa0ce18439adb9ea379c9 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Tue, 20 Dec 2022 12:22:39 +0000 Subject: [PATCH] Don't pass default snapshot_at=None to calibration_client --- notebooks/LPD/LPD_Correct_Fast.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notebooks/LPD/LPD_Correct_Fast.ipynb b/notebooks/LPD/LPD_Correct_Fast.ipynb index 5406cab07..4b8dfa457 100644 --- a/notebooks/LPD/LPD_Correct_Fast.ipynb +++ b/notebooks/LPD/LPD_Correct_Fast.ipynb @@ -282,7 +282,8 @@ " resp = CalibrationConstantVersion.get_closest_by_time_by_detector_conditions(\n", " client, karabo_id, list(calibrations.keys()),\n", " {'parameters_conditions_attributes': condition},\n", - " karabo_da='', event_at=creation_time.isoformat(), snapshot_at=None)\n", + " karabo_da='', event_at=creation_time.isoformat()\n", + " )\n", "\n", " if not resp['success']:\n", " raise RuntimeError(resp)\n", -- GitLab