(scope: Scope, receive: Receive, send: Send)
| 531 | |
| 532 | def _middleware_factory(app: ASGIApp, arg: str) -> ASGIApp: |
| 533 | async def _app(scope: Scope, receive: Receive, send: Send) -> None: |
| 534 | calls.append(arg) |
| 535 | await app(scope, receive, send) |
| 536 | |
| 537 | return _app |
| 538 |