From 49e81b9cba754612ff4f6591a73386b450aefc3a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 27 Sep 2011 22:01:03 -0400 Subject: [PATCH] Whitespace --- httpbin/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/filters.py b/httpbin/filters.py index 2328441..96fc86b 100644 --- a/httpbin/filters.py +++ b/httpbin/filters.py @@ -21,6 +21,7 @@ from flask import Flask, Response app = Flask(__name__) + @decorator def x_runtime(f, *args, **kwargs): """X-Runtime Flask Response Decorator.""" @@ -32,7 +33,6 @@ def x_runtime(f, *args, **kwargs): return r - @decorator def json(f, *args, **kwargs): """JSON Flask Response Decorator."""