From d8d509ff1bc33040b9f6c90c28ee47ac7437945d Mon Sep 17 00:00:00 2001 From: Anders Date: Thu, 12 Sep 2024 15:24:10 -0400 Subject: [PATCH] fix: remove old, incorrect docstring (#1166) --- 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.