From 4984145d070475cbe46104c098f3630b2904795b Mon Sep 17 00:00:00 2001 From: nikkie Date: Tue, 14 Nov 2023 03:54:56 +0900 Subject: [PATCH] Fix typo in docstring of _types.NotGiven (#794) --- src/openai/_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openai/_types.py b/src/openai/_types.py index 0d05be9493..9e962a1078 100644 --- a/src/openai/_types.py +++ b/src/openai/_types.py @@ -279,8 +279,8 @@ class NotGiven: ```py def get(timeout: Union[int, NotGiven, None] = NotGiven()) -> Response: ... - get(timout=1) # 1s timeout - get(timout=None) # No timeout + get(timeout=1) # 1s timeout + get(timeout=None) # No timeout get() # Default timeout behavior, which may not be statically known at the method definition. ``` """