diff options
| author | Frederick Muriuki Muriithi | 2026-09-04 14:53:17 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-09-04 14:53:17 -0500 |
| commit | 1b2e2beff803ab517af4c578c423c4e1cade2dc0 (patch) | |
| tree | 5ed0abb2102a4252ef5f7053f8c3b64bec4361ef | |
| parent | 025b7491c30adba583a5b93c50b77f7f5210335f (diff) | |
| download | gn-uploader-1b2e2beff803ab517af4c578c423c4e1cade2dc0.tar.gz | |
Ignore an issue caught by pylint.
| -rw-r--r-- | scripts/run_qtlreaper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_qtlreaper.py b/scripts/run_qtlreaper.py index 2269ea6..a461d9a 100644 --- a/scripts/run_qtlreaper.py +++ b/scripts/run_qtlreaper.py @@ -108,7 +108,7 @@ def save_qtl_values_to_db(conn, qtls: tuple[dict, ...]): qtls) -def dispatch(args: Namespace) -> int: +def dispatch(args: Namespace) -> int:# pylint: disable=[too-many-locals] """Dispatch the actual logic.""" exitcode = 1 with mysqldb.database_connection(args.db_uri) as conn: |
