mirror of
https://github.com/koush/scrypted.git
synced 2026-04-13 12:00:21 +01: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
|