Method: flask.scaffold.Scaffold.get
Calls: 9, Exceptions: 1, Paths: 1Back
Path 1: 9 calls (1.0)
'/' (5) '/login' (1) '/ignored' (1) '/error' (1) '/
{} (8) dict (1)
Scaffold.route.
TypeError (1)
1@setupmethod
2 def get(self, rule: str, **options: t.Any) -> t.Callable[[T_route], T_route]:
3 """Shortcut for :meth:`route` with ``methods=["GET"]``.
4
5 .. versionadded:: 2.0
6 """
7 return self._method_route("GET", rule, options)