aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kabui2022-01-31 12:32:58 +0300
committerBonfaceKilz2022-02-09 08:49:56 +0300
commit03a0d98526ee3fe074661e5ac5beca555bc11d33 (patch)
tree71f1cc038e8d40474ef54198be77bb73fdbb6a41
parent18cf1d2d2079938a1275614c2c095064ac8fc5ed (diff)
downloadgenenetwork2-03a0d98526ee3fe074661e5ac5beca555bc11d33.tar.gz
autopep8 formatting
-rw-r--r--wqflask/wqflask/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py
index 0be881cf..3bf17da6 100644
--- a/wqflask/wqflask/views.py
+++ b/wqflask/wqflask/views.py
@@ -358,15 +358,15 @@ def ctl_setup():
-@app.route("/ctl_results",methods=["POST"])
+@app.route("/ctl_results", methods=["POST"])
def ctl_results():
ctl_results = run_ctl(request.form)
- return render_template("gn3_ctl_results.html",**ctl_results)
+ return render_template("gn3_ctl_results.html", **ctl_results)
@app.route("/ctl_network_files/<file_name>/<file_type>")
-def fetch_network_files(file_name,file_type):
+def fetch_network_files(file_name, file_type):
file_path = f"{file_name}.{file_type}"
file_path = os.path.join("/tmp/",file_path)