From cc65c0df9a25bcae6415e7f162145a9353b0059d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 03:42:14 +0000 Subject: [PATCH] chore(internal): codegen related update --- src/opencode_ai/_utils/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opencode_ai/_utils/_utils.py b/src/opencode_ai/_utils/_utils.py index 50d5926..eec7f4a 100644 --- a/src/opencode_ai/_utils/_utils.py +++ b/src/opencode_ai/_utils/_utils.py @@ -133,7 +133,7 @@ def is_given(obj: _T | NotGiven | Omit) -> TypeGuard[_T]: # Type safe methods for narrowing types with TypeVars. # The default narrowing for isinstance(obj, dict) is dict[unknown, unknown], # however this cause Pyright to rightfully report errors. As we know we don't -# care about the contained types we can safely use `object` in it's place. +# care about the contained types we can safely use `object` in its place. # # There are two separate functions defined, `is_*` and `is_*_t` for different use cases. # `is_*` is for when you're dealing with an unknown input