Create and return a new instance of the instrumentor.
(self)
| 489 | return False |
| 490 | |
| 491 | def get_instance(self) -> BaseInstrumentor: |
| 492 | """Create and return a new instance of the instrumentor.""" |
| 493 | return getattr(self.module, self.class_name)() |
| 494 | |
| 495 | |
| 496 | def instrument_one(loader: InstrumentorLoader) -> Optional[BaseInstrumentor]: |