From 0dab1e85cb197ed37d93facef575f8ef934eca81 Mon Sep 17 00:00:00 2001 From: uditgulati Date: Mon, 10 May 2021 03:51:28 -0500 Subject: fix f string typo --- wqflask/wqflask/gsearch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wqflask') diff --git a/wqflask/wqflask/gsearch.py b/wqflask/wqflask/gsearch.py index 12cd2792..8f66f7e9 100644 --- a/wqflask/wqflask/gsearch.py +++ b/wqflask/wqflask/gsearch.py @@ -122,7 +122,7 @@ class GSearch: max_lrs_text = "N/A" if this_trait['locus_chr'] and this_trait['locus_mb']: - max_lrs_text = f"Chr{str(this_trait['locus_chr']}): {str(this_trait['locus_mb'])}" + max_lrs_text = f"Chr{str(this_trait['locus_chr'])}: {str(this_trait['locus_mb'])}" this_trait['max_lrs_text'] = max_lrs_text trait_list.append(this_trait) @@ -270,7 +270,7 @@ class GSearch: if this_trait['dataset'] == this_trait['group'] + "Publish": try: if this_trait['locus_chr'] and this_trait['locus_mb']: - this_trait['max_lrs_text'] = f"Chr{str(this_trait['locus_chr']}): {str(this_trait['locus_mb'])}" + this_trait['max_lrs_text'] = f"Chr{str(this_trait['locus_chr'])}: {str(this_trait['locus_mb'])}" except: this_trait['max_lrs_text'] = "N/A" -- cgit v1.2.3