From 2f601248941c7a90ed62f2bd5adbb04c402e2d4e Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Tue, 26 Aug 2014 10:09:17 +0200 Subject: [PATCH] Removed ridiculous constructor from AppGroup --- flask/cli.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/flask/cli.py b/flask/cli.py index e4d25549..fc404fcd 100644 --- a/flask/cli.py +++ b/flask/cli.py @@ -294,9 +294,6 @@ class AppGroup(click.Group): Not to be confused with :class:`FlaskGroup`. """ - def __init__(self, app): - click.Group.__init__(self) - def command(self, *args, **kwargs): """This works exactly like the method of the same name on a regular :class:`click.Group` but it wraps callbacks in :func:`with_appcontext`