From c296052f420187b3b3f9cb3e768cce042f5cae73 Mon Sep 17 00:00:00 2001 From: Codex Date: Tue, 7 Apr 2026 10:01:00 +0800 Subject: [PATCH] docs: fix continuously wording in streaming comment Signed-off-by: Codex --- src/openai/lib/streaming/chat/_completions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openai/lib/streaming/chat/_completions.py b/src/openai/lib/streaming/chat/_completions.py index 5f072cafbd..3e6eae7cd4 100644 --- a/src/openai/lib/streaming/chat/_completions.py +++ b/src/openai/lib/streaming/chat/_completions.py @@ -379,7 +379,7 @@ def _accumulate_chunk(self, chunk: ChatCompletionChunk) -> ParsedChatCompletionS choice_snapshot.message, # we don't want to serialise / deserialise our custom properties # as they won't appear in the delta and we don't want to have to - # continuosly reparse the content + # continuously reparse the content exclude=cast( # cast required as mypy isn't smart enough to infer `True` here to `Literal[True]` IncEx,