(self, app: web.application)
| 165 | |
| 166 | class WebPySentryProcessor: |
| 167 | def __init__(self, app: web.application): |
| 168 | self.app = app |
| 169 | |
| 170 | def find_route_name(self) -> str: |
| 171 | handler, groups = self.app._match(self.app.mapping, web.ctx.path) |
nothing calls this directly
no outgoing calls
no test coverage detected