From e31dd4b142eb8ebdfdd675bef6fa697a36f44eef Mon Sep 17 00:00:00 2001 From: Syamala Umamaheswaran Date: Mon, 8 Apr 2019 19:44:03 +0200 Subject: [PATCH] reformat --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 4668250..43bbb25 100644 --- a/index.html +++ b/index.html @@ -354,7 +354,9 @@ def decorated(): auth = request.headers.get('Authorization') if not auth or auth != 'Bearer my-secret-api-key': - return Response('Not Authorized', 401, {'WWW-Authenticate': 'Bearer realm="Bearer"'}) + return Response('Not Authorized', + 401, + {'WWW-Authenticate': 'Bearer realm="Bearer"'}) return f() return decorated