Skip to content

Commit f66cd31

Browse files
authored
Update pyiceberg/catalog/rest/__init__.py
1 parent c015840 commit f66cd31

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pyiceberg/catalog/rest/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,7 @@ def register_table(self, identifier: Union[str, Identifier], metadata_location:
613613

614614
@retry(**_RETRY_ARGS)
615615
def list_tables(
616-
self, namespace: Union[str, Identifier], page_token: str | None = None, page_size: int | None = None
617-
) -> List[Identifier]:
616+
self, namespace: Union[str, Identifier]) -> List[Identifier]:
618617
namespace_tuple = self._check_valid_namespace_identifier(namespace)
619618
namespace_concat = NAMESPACE_SEPARATOR.join(namespace_tuple)
620619
response = self._session.get(self.url(Endpoints.list_tables, namespace=namespace_concat))

0 commit comments

Comments
 (0)