(self, arguments: t.List[t.Any], autoescape: bool)
| 771 | return rv # type: ignore |
| 772 | |
| 773 | def _invoke(self, arguments: t.List[t.Any], autoescape: bool) -> str: |
| 774 | if self._environment.is_async: |
| 775 | return self._async_invoke(arguments, autoescape) # type: ignore |
| 776 | |
| 777 | rv = self._func(*arguments) |
| 778 | |
| 779 | if autoescape: |
| 780 | rv = Markup(rv) |
| 781 | |
| 782 | return rv |
| 783 | |
| 784 | def __repr__(self) -> str: |
| 785 | name = "anonymous" if self.name is None else repr(self.name) |
no test coverage detected