Skip to content

Commit

Permalink
chore(internal): fix typo in NotGiven docstring (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot authored Nov 13, 2023
1 parent 33b553a commit ce5cccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/anthropic/_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 ce5cccc

Please sign in to comment.