(cls)
| 110 | |
| 111 | @classmethod |
| 112 | def GetLoop(cls) -> asyncio.AbstractEventLoop: |
| 113 | assert cls._loop is not None, "Loop is not started" |
| 114 | return cls._loop |
| 115 | |
| 116 | @classmethod |
| 117 | def GetOrStartLoop(cls) -> asyncio.AbstractEventLoop: |
nothing calls this directly
no outgoing calls
no test coverage detected