diff options
author | Alexander Kabui | 2021-06-23 10:21:51 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-06-23 10:21:51 +0300 |
commit | 7b602a681dc3fefbe322037545d07389ef194920 (patch) | |
tree | 9beb98989133c8ef87ab0cde33a9773b8298cac2 /gn3/computations | |
parent | fed7009b5eec9cc8b9370d4fb8486c7e4136b3d4 (diff) | |
download | genenetwork3-7b602a681dc3fefbe322037545d07389ef194920.tar.gz |
fix pylint issues
Diffstat (limited to 'gn3/computations')
-rw-r--r-- | gn3/computations/biweight.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |