From e15926e695a7d5b10d635985f695b9156a40e368 Mon Sep 17 00:00:00 2001
From: ahmedk <karim.ahmed@xfel.eu>
Date: Wed, 4 Oct 2023 12:50:56 +0200
Subject: [PATCH] fix warning and docstring

---
 src/cal_tools/jungfraulib.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/cal_tools/jungfraulib.py b/src/cal_tools/jungfraulib.py
index d19d3d617..bb1fcbcfa 100644
--- a/src/cal_tools/jungfraulib.py
+++ b/src/cal_tools/jungfraulib.py
@@ -153,7 +153,7 @@ def sort_runs_by_gain(
 
     Args:
         raw_folder (str): RAW folder for the validated dark runs.
-        runs (list, optional): [High run, Medium run, Low run].
+        runs (list): [High run, Medium run, Low run].
         ctrl_src (str): Control source path for slow data.
         modes_order (dict): Gain modes order to sort the runs by.
         expected_run_order (list):Expected dark runs order to process.
@@ -200,7 +200,8 @@ def sort_runs_by_gain(
     if modes == legacy_adaptive:
         warning(f"run.settings for medium and low gain runs"
                 f" are wrong {modes[1:]}. This is an expected "
-                f"bug for old raw data. Setting gain_mode to {gm}.")
+                f"bug for old raw data. "
+                "Assuming this is an adaptive gain runs.")
     elif not modes in expected_run_order:
         raise ValueError("Wrong dark runs are given. "
                          f"The given three runs are {runs} with "
-- 
GitLab