From 10140ab707021dd2dffb1b439f52a62e3d59c29a Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Sun, 20 Jun 2021 09:15:00 +0300 Subject: minor fix docstring --- gn3/computations/biweight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gn3/computations/biweight.py b/gn3/computations/biweight.py index f5eecb2..6d031ad 100644 --- a/gn3/computations/biweight.py +++ b/gn3/computations/biweight.py @@ -12,7 +12,7 @@ def calculate_biweight_corr(trait_vals: List, path_to_script: str = BIWEIGHT_RSCRIPT, command: str = "Rscript" ) -> Tuple[float, float]: - '''biweight function''' + """biweight function""" args_1 = ' '.join(str(trait_val) for trait_val in trait_vals) args_2 = ' '.join(str(target_val) for target_val in target_vals) -- cgit v1.2.3