From 6e23a22c4a60c9238b23d38f586f3de2aa9048f9 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Thu, 12 Sep 2024 18:47:03 +0300 Subject: Fix pylint errors. Signed-off-by: Munyoki Kilyungi --- gn3/computations/gemma.py | 4 +--- gn3/computations/rqtl.py | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) (limited to 'gn3/computations') diff --git a/gn3/computations/gemma.py b/gn3/computations/gemma.py index 577d8e8..6c53ecc 100644 --- a/gn3/computations/gemma.py +++ b/gn3/computations/gemma.py @@ -1,14 +1,12 @@ """Procedures related gemma computations""" -import errno import os from base64 import b64encode from hashlib import md5 from typing import Optional, Dict from typing import List -from typing import ValuesView from gn3.commands import compose_gemma_cmd -from gn3.fs_helpers import get_hash_of_files, assert_paths_exist +from gn3.fs_helpers import get_hash_of_files def generate_hash_of_string(unhashed_str: str) -> str: diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py index 0b8c23d..16f1398 100644 --- a/gn3/computations/rqtl.py +++ b/gn3/computations/rqtl.py @@ -1,7 +1,5 @@ """Procedures related to R/qtl computations""" import os -import sys -import logging from bisect import bisect from typing import Dict, List, Tuple, Union -- cgit v1.2.3