(self, **kwargs: Any)
| 296 | """ |
| 297 | |
| 298 | def initialize(self, **kwargs: Any) -> None: # type: ignore |
| 299 | super().initialize(asyncio.get_event_loop(), **kwargs) |
| 300 | |
| 301 | def make_current(self) -> None: |
| 302 | # AsyncIOMainLoop already refers to the current asyncio loop so |
nothing calls this directly
no test coverage detected