From 29822306d2be9b1e8fe683b38b80d2440a708627 Mon Sep 17 00:00:00 2001 From: Wyatt Alt Date: Fri, 21 Aug 2026 14:20:03 -0700 Subject: [PATCH] fix(python): skip the unrunnable FunctionVersion doctest example (#4014) The example binds an undefined `function`; only its last line was skipped, so the doctest suite fails on main and on every PR. --- python/python/lancedb/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/python/lancedb/functions.py b/python/python/lancedb/functions.py index 3b2d05951..9532ab8b9 100644 --- a/python/python/lancedb/functions.py +++ b/python/python/lancedb/functions.py @@ -281,7 +281,7 @@ class FunctionVersion(_RemoteValue): Examples -------- >>> from lancedb import col - >>> application = function( + >>> application = function( # doctest: +SKIP ... title=col("title"), ... body=col("body"), ... ).rename(columns={