Skip to content

Commit eee7c08

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

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pyiceberg/catalog/rest/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,8 +612,7 @@ def register_table(self, identifier: Union[str, Identifier], metadata_location:
612612
return self._response_to_table(self.identifier_to_tuple(identifier), table_response)
613613

614614
@retry(**_RETRY_ARGS)
615-
def list_tables(
616-
self, namespace: Union[str, Identifier]) -> List[Identifier]:
615+
def list_tables(self, namespace: Union[str, Identifier]) -> List[Identifier]:
617616
namespace_tuple = self._check_valid_namespace_identifier(namespace)
618617
namespace_concat = NAMESPACE_SEPARATOR.join(namespace_tuple)
619618
response = self._session.get(self.url(Endpoints.list_tables, namespace=namespace_concat))

0 commit comments

Comments
 (0)