diff options
author | BonfaceKilz | 2022-06-21 11:32:29 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-06-21 11:32:29 +0300 |
commit | 9afa06ec74ad07581c91445eeeae86dc30023084 (patch) | |
tree | ab3d8035bcf55c6b219a91c19dca4da0031dc156 | |
parent | d36bb383f7e3c666a03fef5bc63d763df193de61 (diff) | |
download | genenetwork3-9afa06ec74ad07581c91445eeeae86dc30023084.tar.gz |
Replace lint code with human-readable text
* gn3/db/correlations.py (__fetch_data__): Use a more readable code as
opposed to an error code.
-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 12d3069..a8a72bc 100644 --- a/gn3/db/correlations.py +++ b/gn3/db/correlations.py @@ -529,7 +529,7 @@ def __build_query__( f"ORDER BY {db_type}.Id"), 1) -# pylint: disable=[R0913] +# pylint: disable=too-many-arguments def __fetch_data__( conn, sample_ids: tuple, db_name: str, db_type: str, method: str, temp_table: Optional[str]) -> Tuple[Tuple[Any], int]: |