mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
9 lines
187 B
Python
9 lines
187 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
|