Skip to content

Commit

Permalink
Documentation improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbooker42 committed Jun 22, 2024
1 parent a029200 commit 5fab249
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions py/server/deephaven/experimental/iceberg.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def __init__(self, j_object: _JIcebergCatalogAdapter):

def namespaces(self, namespace: Optional[str] = None) -> Table:
"""
Returns the namespaces in the catalog as a Deephaven table.
Returns information on the namespaces in the catalog as a Deephaven table. If a namespace is specified, the
tables in that namespace are listed; otherwise the top-level namespaces are listed.
Args:
namespace (Optional[str]): the higher-level namespace from which to list namespaces; if omitted, the
Expand All @@ -108,7 +109,7 @@ def namespaces(self, namespace: Optional[str] = None) -> Table:

def tables(self, namespace: str) -> Table:
"""
Returns the list of tables in the provided namespace as a Deephaven table.
Returns information on the tables in the specified namespace as a Deephaven table.
Args:
namespace (str): the namespace from which to list tables.
Expand All @@ -123,7 +124,7 @@ def tables(self, namespace: str) -> Table:

def snapshots(self, table_identifier: str) -> Table:
"""
Returns the list of snapshots of the provided table as a Deephaven table.
Returns information on the snapshots of the specified table as a Deephaven table.
Args:
table_identifier (str): the table from which to list snapshots.
Expand Down

0 comments on commit 5fab249

Please sign in to comment.