This is an automated email from the ASF dual-hosted git repository.
sungwy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new aae39b54 fix: remove old, incorrect docstring (#1168)
aae39b54 is described below
commit aae39b54bc22aa8d55aba261e629bd5599e2268b
Author: Anders <[email protected]>
AuthorDate: Thu Sep 12 21:58:15 2024 -0400
fix: remove old, incorrect docstring (#1168)
---
pyiceberg/catalog/__init__.py | 2 --
pyiceberg/catalog/sql.py | 2 --
2 files changed, 4 deletions(-)
diff --git a/pyiceberg/catalog/__init__.py b/pyiceberg/catalog/__init__.py
index cbc9ed37..7eb8b02d 100644
--- a/pyiceberg/catalog/__init__.py
+++ b/pyiceberg/catalog/__init__.py
@@ -592,8 +592,6 @@ class Catalog(ABC):
def list_views(self, namespace: Union[str, Identifier]) ->
List[Identifier]:
"""List views under the given namespace in the catalog.
- If namespace is not provided, lists all views in the catalog.
-
Args:
namespace (str | Identifier): Namespace identifier to search.
diff --git a/pyiceberg/catalog/sql.py b/pyiceberg/catalog/sql.py
index 78883e35..5ad80fed 100644
--- a/pyiceberg/catalog/sql.py
+++ b/pyiceberg/catalog/sql.py
@@ -577,8 +577,6 @@ class SqlCatalog(MetastoreCatalog):
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.