diff options
author | Alexander Kabui | 2022-01-31 12:32:58 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-02-09 08:49:56 +0300 |
commit | 03a0d98526ee3fe074661e5ac5beca555bc11d33 (patch) | |
tree | 71f1cc038e8d40474ef54198be77bb73fdbb6a41 | |
parent | 18cf1d2d2079938a1275614c2c095064ac8fc5ed (diff) | |
download | genenetwork2-03a0d98526ee3fe074661e5ac5beca555bc11d33.tar.gz |
autopep8 formatting
-rw-r--r-- | wqflask/wqflask/views.py | 6 |
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) |