From 456efea01728909cb4f3577e687799aa77af6514 Mon Sep 17 00:00:00 2001 From: karnem <mikhail.karnevskiy@desy.de> Date: Mon, 17 Jun 2019 15:41:00 +0200 Subject: [PATCH] Simplify code --- xfel_calibrate/calibrate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xfel_calibrate/calibrate.py b/xfel_calibrate/calibrate.py index b59ac7d09..7703e4616 100755 --- a/xfel_calibrate/calibrate.py +++ b/xfel_calibrate/calibrate.py @@ -480,9 +480,9 @@ def make_par_table(parms, temp_path, run_uuid): # Fix column width is needed col_type = ['l', 'c', 'p{.3\\textwidth}'] if len_parms[0] == max_len[0]: - col_type[0] = 'p{.3\\textwidth}' + col_type[0] = col_type[2] if len_parms[1] == max_len[1]: - col_type[1] = 'p{.3\\textwidth}' + col_type[1] = col_type[2] tmpl = Template(''' Input of the calibration pipeline -- GitLab