Commit a73d1ce9

nikkie <takuyafjp+develop@gmail.com>
2023-11-14 02:54:56
Fix typo in docstring of _types.NotGiven (#794)
1 parent 812839c
Changed files (1)
src
openai
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.
     ```
     """