From 20fc20b76b71e570691b70ef32e7028530760788 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Wed, 17 Apr 2024 14:19:50 +0300 Subject: Remove an f-string that doesn't have any interpolated variables. Signed-off-by: Munyoki Kilyungi --- gn3/db/datasets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn3/db/datasets.py') 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: -- cgit v1.2.3