aboutsummaryrefslogtreecommitdiff
path: root/gn3/db
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-09-22 09:02:46 +0300
committerFrederick Muriuki Muriithi2021-09-22 09:02:46 +0300
commit56c73324c285d896567268370f3955bbd15754b0 (patch)
tree88516f6305f3141e5fcc1d2be5b1c32c62c4b5f6 /gn3/db
parent71cc35e5178904b512b9007e33be17a36f6656f2 (diff)
downloadgenenetwork3-56c73324c285d896567268370f3955bbd15754b0.tar.gz
Fix more pylint errors
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/genotypes.py2
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:]