Skip to content

Commit f917d24

Browse files
committed
fix: function docstring for raises but has no Raises section
Fix for -- Error: function raises but has no Raises section Signed-off-by: Mark Sturdevant <mark.sturdevant@ibm.com>
1 parent 73a040f commit f917d24

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

mellea/helpers/async_helpers.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ async def send_to_queue(
2525
co: A coroutine or async iterator producing the backend response.
2626
aqueue: The async queue to send results to. A sentinel ``None`` is appended on
2727
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.
2832
"""
2933
try:
3034
if isinstance(co, Coroutine):

0 commit comments

Comments
 (0)