From c0d0df44408c1a62bd514faeaf59f234f2a92330 Mon Sep 17 00:00:00 2001 From: Anders Swanson Date: Thu, 12 Sep 2024 14:13:52 -0400 Subject: [PATCH] fix: remove old, incorrect docstring --- pyiceberg/catalog/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyiceberg/catalog/__init__.py b/pyiceberg/catalog/__init__.py index 68583bf3c9..cbc9ed376c 100644 --- a/pyiceberg/catalog/__init__.py +++ b/pyiceberg/catalog/__init__.py @@ -564,8 +564,6 @@ def drop_namespace(self, namespace: Union[str, Identifier]) -> None: def list_tables(self, namespace: Union[str, Identifier]) -> List[Identifier]: """List tables under the given namespace in the catalog. - If namespace not provided, will list all tables in the catalog. - Args: namespace (str | Identifier): Namespace identifier to search.