(self)
| 221 | self._finalize() |
| 222 | |
| 223 | def _finalize(self) -> None: |
| 224 | if self._finalized: |
| 225 | return |
| 226 | self._finalized = True |
| 227 | |
| 228 | self._instrument_init() |
| 229 | |
| 230 | _instrumentation_factory.dispatch.class_instrument(self.class_) |
| 231 | |
| 232 | def __hash__(self) -> int: # type: ignore[override] |
| 233 | return id(self) |
no test coverage detected