From bc40da63ede53a1001344b404e4ecb296fb58419 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Mon, 13 Nov 2023 18:59:45 +0000 Subject: [PATCH] chore(internal): fix typo in NotGiven docstring --- src/orb/_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/orb/_types.py b/src/orb/_types.py index a81d1913..bcc7a427 100644 --- a/src/orb/_types.py +++ b/src/orb/_types.py @@ -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. ``` """