aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/biweight.py
diff options
context:
space:
mode:
authorAlexander Kabui2021-06-23 10:21:51 +0300
committerAlexander Kabui2021-06-23 10:21:51 +0300
commit7b602a681dc3fefbe322037545d07389ef194920 (patch)
tree9beb98989133c8ef87ab0cde33a9773b8298cac2 /gn3/computations/biweight.py
parentfed7009b5eec9cc8b9370d4fb8486c7e4136b3d4 (diff)
downloadgenenetwork3-7b602a681dc3fefbe322037545d07389ef194920.tar.gz
fix pylint issues
Diffstat (limited to 'gn3/computations/biweight.py')
-rw-r--r--gn3/computations/biweight.py4
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