aboutsummaryrefslogtreecommitdiff
path: root/gn3/db/datasets.py
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-04-17 14:19:50 +0300
committerBonfaceKilz2024-04-30 12:18:58 +0300
commit20fc20b76b71e570691b70ef32e7028530760788 (patch)
tree1c78e4df876fcf315cc3a6fc2e73fc6bc5e5953b /gn3/db/datasets.py
parent8d9cc98a261feda984eeb3d02e64c7a06d4413ec (diff)
downloadgenenetwork3-20fc20b76b71e570691b70ef32e7028530760788.tar.gz
Remove an f-string that doesn't have any interpolated variables.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn3/db/datasets.py')
-rw-r--r--gn3/db/datasets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/datasets.py b/gn3/db/datasets.py
index fbeb756..c653d5f 100644
--- a/gn3/db/datasets.py
+++ b/gn3/db/datasets.py
@@ -22,7 +22,7 @@ def retrieve_sample_list(group: str, inc_par: bool = True, inc_f1: bool = True):
app.config.get(
"GENENETWORK_FILES",
"/home/gn2/production/genotype_files/"
- ), f'parents_and_f1s.json'
+ ), 'parents_and_f1s.json'
)
if par_f1_path.is_file():
with open(par_f1_path, encoding="utf-8") as par_f1_file: