(self, engine)
| 419 | self.ctx: Any = None |
| 420 | |
| 421 | def attach(self, engine): |
| 422 | engine.add_event_handler(self.start_event, self.start) |
| 423 | engine.add_event_handler(self.end_event, self.end) |
| 424 | return self |
| 425 | |
| 426 | def start(self, engine): |
| 427 | self.ctx = self.profiler.profile_ctx(self.name) |
no outgoing calls
no test coverage detected