From 738d98e5abd040355f851fd829f455235ec30a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20M=C3=B6hlmann?= Date: Wed, 2 Jan 2019 20:11:12 +0200 Subject: [PATCH] Fix code formatting --- setup/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/server.py b/setup/server.py index 3c950b0a..4474cd6c 100644 --- a/setup/server.py +++ b/setup/server.py @@ -12,7 +12,7 @@ import ipaddress version = os.getenv("this_version") static_url_path = "/" + version + "/static" -app = flask.Flask(__name__,static_url_path=static_url_path) +app = flask.Flask(__name__, static_url_path=static_url_path) flask_bootstrap.Bootstrap(app) db = redis.StrictRedis(host='redis', port=6379, db=0)