(self, arguments, autoescape)
| 106 | |
| 107 | @internalcode |
| 108 | def _invoke(self, arguments, autoescape): |
| 109 | if not self._environment.is_async: |
| 110 | return original_invoke(self, arguments, autoescape) |
| 111 | return async_invoke(self, arguments, autoescape) |
| 112 | return update_wrapper(_invoke, original_invoke) |
| 113 | |
| 114 |
nothing calls this directly
no test coverage detected
searching dependent graphs…