about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn3/computations/biweight.py2
1 files changed, 1 insertions, 1 deletions
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)