aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)