Skip to content

Commit ca198e9

Browse files
chore(internal): fix typo in NotGiven docstring (#182)
1 parent b2a7d2c commit ca198e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/finch/_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)