diff options
author | Munyoki Kilyungi | 2024-04-17 14:19:50 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-04-30 12:18:58 +0300 |
commit | 20fc20b76b71e570691b70ef32e7028530760788 (patch) | |
tree | 1c78e4df876fcf315cc3a6fc2e73fc6bc5e5953b | |
parent | 8d9cc98a261feda984eeb3d02e64c7a06d4413ec (diff) | |
download | genenetwork3-20fc20b76b71e570691b70ef32e7028530760788.tar.gz |
Remove an f-string that doesn't have any interpolated variables.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | gn3/db/datasets.py | 2 |
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: |