From 8a72d8194f075f6f3470620d738c36b649456f4d Mon Sep 17 00:00:00 2001 From: qzhu Date: Mon, 22 Apr 2024 13:55:18 -0700 Subject: [PATCH] added extra data needed for table details page --- python/python/lancedb/remote/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/python/lancedb/remote/table.py b/python/python/lancedb/remote/table.py index a82c52ed..c6a0078b 100644 --- a/python/python/lancedb/remote/table.py +++ b/python/python/lancedb/remote/table.py @@ -72,7 +72,7 @@ class RemoteTable(Table): return resp def index_stats(self, index_uuid: str): - """List all the stats of a specificied index""" + """List all the stats of a specified index""" resp = self._conn._client.post( f"/v1/table/{self._name}/index/{index_uuid}/stats/" )