Skip to content

Commit 7c3b48f

Browse files
authored
Fix typo in docstring of _types.NotGiven (#794)
1 parent 3b92cdf commit 7c3b48f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/openai/_types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ class NotGiven:
279279
```py
280280
def get(timeout: Union[int, NotGiven, None] = NotGiven()) -> Response: ...
281281
282-
get(timout=1) # 1s timeout
283-
get(timout=None) # No timeout
282+
get(timeout=1) # 1s timeout
283+
get(timeout=None) # No timeout
284284
get() # Default timeout behavior, which may not be statically known at the method definition.
285285
```
286286
"""

0 commit comments

Comments
 (0)