From ee9c9b0731be6020a426323687ee0f3d26cdc498 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Fri, 20 Jun 2025 10:09:28 -0400 Subject: [PATCH] Remove old docstring note --- src/fastmcp/utilities/types.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/fastmcp/utilities/types.py b/src/fastmcp/utilities/types.py index e7c7a327e..8c65bd82c 100644 --- a/src/fastmcp/utilities/types.py +++ b/src/fastmcp/utilities/types.py @@ -35,9 +35,6 @@ def get_cached_typeadapter(cls: T) -> TypeAdapter[T]: create them once in a global scope and reuse them as often as possible. However, this isn't feasible for user-generated functions. Instead, we use a cache to minimize the cost of creating them as much as possible. - - The _parent_depth is set to 3 to look at an additional frame, since this - function is in its own scope. """ return TypeAdapter(cls)