diff options
author | Frederick Muriuki Muriithi | 2021-09-22 09:02:46 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-09-22 09:02:46 +0300 |
commit | 56c73324c285d896567268370f3955bbd15754b0 (patch) | |
tree | 88516f6305f3141e5fcc1d2be5b1c32c62c4b5f6 /gn3/db | |
parent | 71cc35e5178904b512b9007e33be17a36f6656f2 (diff) | |
download | genenetwork3-56c73324c285d896567268370f3955bbd15754b0.tar.gz |
Fix more pylint errors
Diffstat (limited to 'gn3/db')
-rw-r--r-- | gn3/db/genotypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/genotypes.py b/gn3/db/genotypes.py index 9ea9f20..9987320 100644 --- a/gn3/db/genotypes.py +++ b/gn3/db/genotypes.py @@ -56,7 +56,7 @@ def __load_genotype_samples_from_geno(genotype_filename: str): continue break - headers = line.split("\t" ) # type: ignore[arg-type] + headers = line.split("\t") # type: ignore[arg-type] if headers[3] == "Mb": return headers[4:] return headers[3:] |