mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
10 lines
188 B
Python
10 lines
188 B
Python
import typing
|
|
|
|
|
|
async def writeWorkerGenerator(gen, out: typing.TextIO):
|
|
try:
|
|
async for item in gen:
|
|
out.buffer.write(item)
|
|
except Exception as e:
|
|
pass
|