From 7b602a681dc3fefbe322037545d07389ef194920 Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Wed, 23 Jun 2021 10:21:51 +0300 Subject: fix pylint issues --- gn3/computations/biweight.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gn3/computations/biweight.py') diff --git a/gn3/computations/biweight.py b/gn3/computations/biweight.py index 0377bdf..7accd0c 100644 --- a/gn3/computations/biweight.py +++ b/gn3/computations/biweight.py @@ -23,5 +23,5 @@ def calculate_biweight_corr(trait_vals: List, (corr_coeff, p_val) = tuple( [float(y.strip()) for y in results.split()]) return (corr_coeff, p_val) - except Exception as e: - raise e + except Exception as error: + raise error -- cgit v1.2.3