(**kwargs: t.Any)
| 104 | if cls.init_every_request: |
| 105 | |
| 106 | def view(**kwargs: t.Any) -> ft.ResponseReturnValue: |
| 107 | self = view.view_class( # type: ignore[attr-defined] |
| 108 | *class_args, **class_kwargs |
| 109 | ) |
| 110 | return current_app.ensure_sync(self.dispatch_request)(**kwargs) # type: ignore[no-any-return] |
| 111 | |
| 112 | else: |
| 113 | self = cls(*class_args, **class_kwargs) # pyright: ignore |
nothing calls this directly
no test coverage detected