From d36bb383f7e3c666a03fef5bc63d763df193de61 Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Tue, 21 Jun 2022 11:00:08 +0300 Subject: db: correlations: Ignore pylint error * gn3/db/correlations.py (__fetch_data__): Ignore "Too many args" [R0913] error. --- gn3/db/correlations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gn3/db/correlations.py b/gn3/db/correlations.py index ba61bb0..12d3069 100644 --- a/gn3/db/correlations.py +++ b/gn3/db/correlations.py @@ -529,6 +529,7 @@ def __build_query__( f"ORDER BY {db_type}.Id"), 1) +# pylint: disable=[R0913] def __fetch_data__( conn, sample_ids: tuple, db_name: str, db_type: str, method: str, temp_table: Optional[str]) -> Tuple[Tuple[Any], int]: -- cgit v1.2.3