Path 1: 5 calls (0.71)

None (5)

FlaskGroup def (3) AppGroup def (2)

dict (3) {} (2)

command..decorator def (5)

1def group(self, *args, **kwargs):
2        """This works exactly like the method of the same name on a regular
3        :class:`click.Group` but it defaults the group class to
4        :class:`AppGroup`.
5        """
6        kwargs.setdefault("cls", AppGroup)
7        return click.Group.group(self, *args, **kwargs)
            

Path 2: 1 calls (0.14)

() (1)

{} (1)

Group.group..decorator def (1)

1def group(self, *args, **kwargs):
2        """This works exactly like the method of the same name on a regular
3        :class:`click.Group` but it defaults the group class to
4        :class:`AppGroup`.
5        """
6        kwargs.setdefault("cls", AppGroup)
7        return click.Group.group(self, *args, **kwargs)
            

Path 3: 1 calls (0.14)

() (1)

dict (1)

Group.group..decorator def (1)

1def group(self, *args, **kwargs):
2        """This works exactly like the method of the same name on a regular
3        :class:`click.Group` but it defaults the group class to
4        :class:`AppGroup`.
5        """
6        kwargs.setdefault("cls", AppGroup)
7        return click.Group.group(self, *args, **kwargs)