(self, scope: Scope, receive: Receive, send: Send)
| 13 | self.context_name = context_name |
| 14 | |
| 15 | async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 16 | async with AsyncExitStack() as stack: |
| 17 | scope[self.context_name] = stack |
| 18 | await self.app(scope, receive, send) |