Files
microsoft--semantic-kernel/python/semantic_kernel/utils/list_handler.py
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

22 lines
554 B
Python

# Copyright (c) Microsoft. All rights reserved.
import asyncio
from collections.abc import AsyncGenerator, AsyncIterable, Sequence
from typing import TypeVar
_T = TypeVar("_T")
async def desync_list(sync_list: Sequence[_T]) -> AsyncIterable[_T]: # noqa: RUF029
"""De synchronize a list of synchronous objects."""
for x in sync_list:
yield x
async def empty_generator() -> AsyncGenerator[_T, None]:
"""An empty generator, can be used to return an empty generator."""
if False:
yield None
await asyncio.sleep(0)