(self)
| 89 | |
| 90 | @internalcode |
| 91 | def __call__(self): |
| 92 | if not self._context.environment.is_async: |
| 93 | return original_call(self) |
| 94 | return async_call(self) |
| 95 | |
| 96 | return update_wrapper(__call__, original_call) |
| 97 |
nothing calls this directly
no test coverage detected
searching dependent graphs…