We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a040f commit f917d24Copy full SHA for f917d24
1 file changed
mellea/helpers/async_helpers.py
@@ -25,6 +25,10 @@ async def send_to_queue(
25
co: A coroutine or async iterator producing the backend response.
26
aqueue: The async queue to send results to. A sentinel ``None`` is appended on
27
completion; an exception instance is appended on error.
28
+
29
+ Raises:
30
+ SystemExit: Re-raised if caught during processing.
31
+ KeyboardInterrupt: Re-raised if caught during processing.
32
"""
33
try:
34
if isinstance(co, Coroutine):
0 commit comments