aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-09-30 14:25:53 +0300
committerFrederick Muriuki Muriithi2022-09-30 14:25:53 +0300
commita5cfbd22ad82ff07c5e8207ce9a3d5447718f158 (patch)
treedc7e830ab8ec6fcc51f1ac1396d5972999c6343e
parenta9426eaf6e2f4180b8408bd7df06b0435330df12 (diff)
downloadgenenetwork2-a5cfbd22ad82ff07c5e8207ce9a3d5447718f158.tar.gz
Reformat statement
-rw-r--r--wqflask/wqflask/correlation/pre_computes.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/wqflask/wqflask/correlation/pre_computes.py b/wqflask/wqflask/correlation/pre_computes.py
index 20fe84e3..330925f9 100644
--- a/wqflask/wqflask/correlation/pre_computes.py
+++ b/wqflask/wqflask/correlation/pre_computes.py
@@ -248,8 +248,7 @@ def write_db_to_textfile(db_name, conn, text_dir=TMPDIR):
"ORDER BY Strain.Name",
(db_name,))
results = cursor.fetchall()
- file_name = __generate_file_name__(
- db_name)
+ file_name = __generate_file_name__(db_name)
if (results and file_name):
__write_to_file__(os.path.join(text_dir, file_name),
*__parse_to_dict__(results))