(self, **kwargs: Any)
| 291 | """ |
| 292 | |
| 293 | def initialize(self, **kwargs: Any) -> None: # type: ignore |
| 294 | super().initialize(asyncio.get_event_loop(), **kwargs) |
| 295 | |
| 296 | def _make_current(self) -> None: |
| 297 | # AsyncIOMainLoop already refers to the current asyncio loop so |
nothing calls this directly
no test coverage detected