diff options
author | Frederick Muriuki Muriithi | 2021-12-22 09:13:32 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-12-24 14:36:15 +0300 |
commit | 672c1f2d43961feb59d9549557cb10c4f0b19dcf (patch) | |
tree | dd8eb8e83d0cdf4136f8d94e00f6ba578001ea3a | |
parent | 2d3b6eae6953d5e4b00f21b5ffd683271d0f76bc (diff) | |
download | genenetwork3-672c1f2d43961feb59d9549557cb10c4f0b19dcf.tar.gz |
Fix linting errors
-rw-r--r-- | gn3/authentication.py | 5 | ||||
-rw-r--r-- | gn3/computations/correlations.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gn3/authentication.py b/gn3/authentication.py index a6372c1..4aedacd 100644 --- a/gn3/authentication.py +++ b/gn3/authentication.py @@ -163,3 +163,8 @@ def create_group(conn: Redis, group_name: Optional[str], } conn.hset("groups", group_id, json.dumps(group)) return group + # This might break stuff, but it fixes the linting error regarding + # inconsistent return types. + # @BonfaceKilz please review this and replace with appropriate return and + # remove these comments. + return None diff --git a/gn3/computations/correlations.py b/gn3/computations/correlations.py index d38946e..345b8d7 100644 --- a/gn3/computations/correlations.py +++ b/gn3/computations/correlations.py @@ -79,7 +79,7 @@ def compute_sample_r_correlation(trait_name, corr_method, trait_vals, zip(*list(normalize_values(trait_vals, target_samples_vals)))) num_overlap = len(normalized_traits_vals) except ValueError: - return + return None if num_overlap > 5: |