Skip to content

Commit

Permalink
Fix typo in docstring of _types.NotGiven (openai#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftnext authored and megamanics committed Aug 14, 2024
1 parent 66ef93b commit 4984145
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 4984145

Please sign in to comment.