diff options
author | Frederick Muriuki Muriithi | 2021-12-14 13:46:40 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-12-14 13:46:40 +0300 |
commit | 14f70b34235dbf43d68ad72ea74a2020af890072 (patch) | |
tree | d84ca1beafee4a9e68f6a102ad770a910e4ee3ba /gn3/db | |
parent | 2aa097404a64260217bb06c131376c98adb8c980 (diff) | |
download | genenetwork3-14f70b34235dbf43d68ad72ea74a2020af890072.tar.gz |
mypy: ignore some imports and errors
* Ignore some missing library stubs
* Ignore some typing errors
* Fix obvious typing errors
Diffstat (limited to 'gn3/db')
-rw-r--r-- | gn3/db/correlations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/correlations.py b/gn3/db/correlations.py index 268cfdd..338c0f2 100644 --- a/gn3/db/correlations.py +++ b/gn3/db/correlations.py @@ -422,7 +422,7 @@ def fetch_sample_ids( def build_query_sgo_lit_corr( db_type: str, temp_table: str, sample_id_columns: str, - joins: Tuple[str, ...]) -> str: + joins: Tuple[str, ...]) -> Tuple[str, int]: """ Build query for `SGO Literature Correlation` data, when querying the given `temp_table` temporary table. |