From b51fbdc8e00ea777dcfdfa39ae789206ecfdb0a7 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 6 Oct 2011 10:49:12 -0400 Subject: [PATCH] Removed a newline --- flask/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/flask/views.py b/flask/views.py index be718cc6..f11c3ddd 100644 --- a/flask/views.py +++ b/flask/views.py @@ -15,7 +15,6 @@ http_method_funcs = frozenset(['get', 'post', 'head', 'options', 'delete', 'put', 'trace']) - class View(object): """Alternative way to use view functions. A subclass has to implement :meth:`dispatch_request` which is called with the view arguments from