From 979a2d3d9d42a24b31e003e23bf4cd19030b0627 Mon Sep 17 00:00:00 2001 From: andrew-pienso <164396700+andrew-pienso@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:11:25 -0500 Subject: [PATCH] docs: fixes is_open docstring on AsyncTable (#2150) --- python/python/lancedb/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/python/lancedb/table.py b/python/python/lancedb/table.py index a752deaa..fce9c262 100644 --- a/python/python/lancedb/table.py +++ b/python/python/lancedb/table.py @@ -2683,7 +2683,7 @@ class AsyncTable: self.close() def is_open(self) -> bool: - """Return True if the table is closed.""" + """Return True if the table is open.""" return self._inner.is_open() def close(self):