Skip to content

Commit

Permalink
Fix typo in docstring of _types.NotGiven (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftnext authored and stainless-bot committed Nov 15, 2023
1 parent 812839c commit a73d1ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/openai/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```
"""
Expand Down

0 comments on commit a73d1ce

Please sign in to comment.